Вот мой класс:
class Application {
public static void main(){
System.out.println("main called");
otherMethod();
}
public static void otherMethod(){
System.out.println("otherMethod called");
}
}
Вот мой тест на спок
def "Expect that Application.otherMethod() is called"(){
given:
def app = new Application()
when:
Application.main()
then:
1 * Application.otherMethod()
}
Как я могу сделать эту работу?