Hamcrests NoSuchMethodError after multiple calls to mock

79 Views Asked by At

I've got the common problem with NoSuchMethodError by org.hamcrest.Matcher.describeMismatch. It's very weird because it's only throwing when I try to mock one method with multiple arguments in one test. I guess my description can be not clearly, so I'll show it by example. This is my mock:

  private void mockParameterListOfTerminalGroup(TerminalGroup terminalGroup, List<Parameter> parameters) {
    Matcher<ParameterFilter> matcher = Matchers.<ParameterFilter> hasProperty("bean", hasProperty("scopeId", equalTo(terminalGroup.getId())));
    when(parameterDAO.getByExample(argThat(matcher))).thenReturn(parameters);
}

when it's called once in test, it's working clearly, but when I try to mock it for many times for different parameters its throwing NoSuchMethodError.

The dependencies are in right order:

 <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-core</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-library</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>1.10.19</version>
            <scope>test</scope>
             <exclusions>
            <exclusion>
                <artifactId>hamcrest-core</artifactId>
                <groupId>org.hamcrest</groupId>
             </exclusion>
        </exclusions>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>

The funny thing is that when I build the whole project with tests, this test passes, but when I run it as a single junit test, it fails.

0

There are 0 best solutions below