1
私がチェーンメソッド呼び出しをモックすると、nullpointer例外が発生する。Powermockチェーンメソッドがfinalクラスで呼び出す
私のコードは次のように探しています:
@RunWith(PowerMockRunner.class)
@PrepareForTest({Comment.class, CommentThread.class})
public class YoutubeTest {
@Test
public void testSortCommentsByDate() {
Comment youtubeCommentOne = PowerMockito.mock(Comment.class); // This is a final class
Mockito.when(youtubeCommentOne.getSnippet().getUpdatedAt().getValue()).thenReturn(youtubeCommentOneDate);
}
は、私がここで間違って何をしているのですか?チェーンのメソッド呼び出しが動作するはず
感謝。それはまさに私の問題でした。 – LupoZ