Skip to content

Instantly share code, notes, and snippets.

View JohanneA's full-sized avatar

Johanne Andersen JohanneA

  • Kambr
  • Amsterdam
View GitHub Profile
@JohanneA
JohanneA / shipment-test-wo-dsl.kt
Created November 22, 2021 15:08
Kotlin test DSL
fun getShipmentWithOneBox(): Shipment {
return Shipment(
id = 1L,
boxes = listOf(
Box(
id = 1L,
contents = listOf(
Product(id = 1L, name = "Pink Fuzzy Jacket"))
)
)
@JohanneA
JohanneA / shipment-test-w-dsl.kt
Created November 22, 2021 15:09
Kotlin test DSL
fun getShipmentWithOneBox(): ShipmentBuilder {
return buildShipment {
id = 1L
buildBoxes {
id = 1L
buildProduct {
id = 1L
name = "Pink Fussy Jacket"
}
}