BAEL-2512 - Add a new section in Mockito Spy article

This commit is contained in:
Jon Cook 2019-03-02 22:50:04 +01:00
parent 96adba789d
commit 4826f19d00
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ public class MockitoMisusingUnitTest {
public void givenNotASpy_whenDoReturn_thenThrowNotAMock() {
try {
List<String> list = new ArrayList<String>();
Mockito.doReturn(100)
.when(list)
.size();