2

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;

}
}
4

1 に答える 1

1

これは、期待される結果を記録する間違った方法です。String のlength()メソッドをモックして記録するのではshowA()なく、自分のメソッドを記録してください。ここに解決策があります

    @SuppressWarnings("unused")
    @Test
    public void test() throws Exception
    {

        new Expectations()
        {
            @NonStrict
            final Source mock = null;

            {
                Source.showA(anyString);
                result = 2;
            }
        };

        assertEquals(2, Source.showA("test"));
    }
于 2013-05-09T11:08:13.423 に答える