Skip to content

Instantly share code, notes, and snippets.

@rozkminiacz
Created March 12, 2018 09:16
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 rozkminiacz/0f944354930df34a28c456104579cbbd to your computer and use it in GitHub Desktop.
Save rozkminiacz/0f944354930df34a28c456104579cbbd to your computer and use it in GitHub Desktop.
import org.jetbrains.spek.api.Spek
import org.jetbrains.spek.api.dsl.*
import org.junit.platform.runner.JUnitPlatform
import com.nhaarman.mockito_kotlin.*
import org.junit.runner.RunWith
@RunWith(JUnitPlatform::class)
object PeopleListTest : Spek({
given("people exists in repository"){
val view: PeopleListContract.View = mock()
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment