Skip to content

Instantly share code, notes, and snippets.

@tigawa
Last active August 29, 2015 14:01
Show Gist options
  • Save tigawa/e7e62f45164db53e7d4d to your computer and use it in GitHub Desktop.
Save tigawa/e7e62f45164db53e7d4d to your computer and use it in GitHub Desktop.
テストと対象のクラスの、特定のメソッドの返り値を指定する方法 mockitoというライブラリが必要です。 -> https://code.google.com/p/mockito/downloads/list
TragetTestClass tragetTestClass = spy(/*ターゲットテストクラスのオブジェクト*/);
doReturn(3L).when(tragetTestClass).getA();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment