Skip to content

Instantly share code, notes, and snippets.

@Petrulak
Last active June 23, 2019 10:32
Show Gist options
  • Save Petrulak/d7ee1f10ca767001399aed1509fbfe8d to your computer and use it in GitHub Desktop.
Save Petrulak/d7ee1f10ca767001399aed1509fbfe8d to your computer and use it in GitHub Desktop.
object HelloWorld : Spek({
val mock by memoized { mock(Repository::class.java) }
group("A") {
group("B") {
test("test 1") { println("mock : $mock")}
test("test 2") { println("mock : $mock")}
}
test("test 3") { println("mock : $mock")}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment