Skip to content

Instantly share code, notes, and snippets.

@tzachz
Last active September 17, 2019 18:26
Show Gist options
  • Save tzachz/e528b9555aa4a3241330e204056b271f to your computer and use it in GitHub Desktop.
Save tzachz/e528b9555aa4a3241330e204056b271f to your computer and use it in GitHub Desktop.
Mockito gotcha: Service
package com.kenshoo.example
class MyService(val dependency: MyOtherService) {
def testedMethod(input: String): Int = dependency.getValue(input) + 1
}
class MyOtherService() {
def getValue(input: String): Int = input.length * 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment