Ожидается 3 матча, 4 записано - PullRequest
2 голосов
/ 05 января 2011

Я получаю это исключение во время фиктивного времени записи.Я попытался найти решение на этом форуме и убедился, что не перепутал ни один другой параметр.

Приведенное ниже ложное ожидание приводит к ошибке.есть еще одно ложное ожидание для того же метода с ДВУМЯ параметрами (перегруженный метод).Ниже приведено это издевательство.

EasyMock.expect(slotManager.addSlotPageletBinding(EasyMock.isA(String.class),EasyMock.isA(String.class))).andReturn(true).anyTimes();

Может ли кто-нибудь помочь мне в этом?Спасибо.

java.lang.IllegalStateException: 3 matchers expected, 4 recorded.
    at org.easymock.internal.ExpectedInvocation.createMissingMatchers(ExpectedInvocation.java:56)
    at org.easymock.internal.ExpectedInvocation.<init>(ExpectedInvocation.java:48)
    at org.easymock.internal.ExpectedInvocation.<init>(ExpectedInvocation.java:40)
    at org.easymock.internal.RecordState.invoke(RecordState.java:76)
    at org.easymock.internal.MockInvocationHandler.invoke(MockInvocationHandler.java:38)
    at org.easymock.internal.ObjectMethodsFilter.invoke(ObjectMethodsFilter.java:72)
    at org.easymock.classextension.internal.ClassProxyFactory$1.intercept(ClassProxyFactory.java:79)
    at com.amazon.inca.application.SlotManager$$EnhancerByCGLIB$$3bf5ac02.addSlotPageletBinding(<generated>)
    at com.amazon.iris3.apps.Iris3YourAccountApplicationTest.testBuildIncaViewConfiguration(Iris3YourAccountApplicationTest.java:107)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at junit.framework.TestCase.runTest(TestCase.java:168)
    at junit.framework.TestCase.runBare(TestCase.java:134)
    at junit.framework.TestResult$1.protect(TestResult.java:110)
    at junit.framework.TestResult.runProtected(TestResult.java:128)
    at junit.framework.TestResult.run(TestResult.java:113)
    at junit.framework.TestCase.run(TestCase.java:124)
    at junit.framework.TestSuite.runTest(TestSuite.java:232)
    at junit.framework.TestSuite.run(TestSuite.java:227)
    at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:46)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

1 Ответ

1 голос
/ 14 апреля 2011

Проблема в том, что вы записали 3 ожидания (вызова) вашей макета, но во время выполнения теста было 4 вызова методов макета.Итак, вы пропустили один звонок где-то.Попробуйте прочитать больше тестируемого кода и обнаружить пропущенный вызов.Или используйте отладчик, чтобы обнаружить его.

...