mockito / mockito-kotlin

Using Mockito with Kotlin
MIT License
3.11k stars 201 forks source link

Add infix to stubbing #366

Open pablisco opened 4 years ago

pablisco commented 4 years ago

Adding the infix to the stub function will allow for a more dsl format:

myMock stub {
  on { call() } doReturn someMagicResult
}