Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はMockito(1.9.5)で遊んでいて、最初の簡単なテストケースで立ち往生しています:
List mockedList = mock(ArrayList.class); assertEquals(0, mockedList.size()); // Passed assertTrue(mockedList.isEmpty()); // Failed
ここで isEmpty() が false を返し、 size() が 0 を返す理由を誰か説明できますか?