Код: Выделить всё
Wanted but not invoked:
childObj.method5();
-> at de.tejoe.ViewTest.init(ViewTest.java:36)
However, there were exactly 5 interactions with this mock:
childObj.method1("foo");
-> at de.tejoe.View.init(View.java:257)
childObj.method2([null]);
-> at de.tejoe.View.init(View.java:258)
childObj.method3();
-> at de.tejoe.View.initAlarms(View.java:259)
childObj.method4(true);
-> at de.tejoe.View.init(View.java:261)
childObj.method5(de.tejoe.View$ViewListener@1c82b8ef);
-> at de.tejoe.View.init(View.java:262)
Используется версия Mockito
Код: Выделить всё
testImplementation 'org.mockito:mockito-core:3.12.4'
Подробнее здесь: https://stackoverflow.com/questions/789 ... gh-invoked