Skip to content

Instantly share code, notes, and snippets.

@JohanneA
Created November 22, 2021 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohanneA/a4113a7fcf0de0ef612072f8e58ddaf8 to your computer and use it in GitHub Desktop.
Save JohanneA/a4113a7fcf0de0ef612072f8e58ddaf8 to your computer and use it in GitHub Desktop.
Kotlin test DSL
fun shipmentWithOneBoxWithOneProduct(): Shipment = buildShipment {
id = 1L
buildBox {
id = 1L
buildProduct {
id = 1L
name = "Pink Fuzzy Jacket"
}
}
}.build()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment