Last active
August 29, 2015 14:01
-
-
Save tigawa/e7e62f45164db53e7d4d to your computer and use it in GitHub Desktop.
テストと対象のクラスの、特定のメソッドの返り値を指定する方法 mockitoというライブラリが必要です。 -> https://code.google.com/p/mockito/downloads/list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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