jmockit 1.2 jar を使用して、String の length メソッドをモックしようとしましたが、予期しない呼び出し例外が発生しました:
FAILED: test
java.lang.IllegalStateException: Missing invocation to mocked type at this point; please make sure such invocations appear only after the declaration of a suitable mock field or parameter
at StringDemo.TestA$1.<init>(TestA.java:17)
at StringDemo.TestA.test(TestA.java:13)
私はtestNGを使用しています:
@Test
public void test() throws Exception
{
new Expectations()
{
@Mocked("length")
String aString;
{
aString.length();
result = 2;
}
};
System.out.println(A.showA("test"));
}
}
実際のクラス A:
public class A {
public static int showA(String str){
int a= str.length();
return a;
}
}