简体   繁体   中英

Tests Run fine in Eclipse but failed in mvn command

The test is very very simple test

@RunWith(MockitoJUnitRunner.class)
public class UnitTestMyCode {

  @InjectMocks
  private MyClass resource;

  @Mock
  private DependentBean bean;

  @Test
  public void test1() throws Exception {
    boolean ss = true;
    assertThat(ss).isTrue();
}

Error

org.mockito.exceptions.base.MockitoException: Field 'resource' annotated with @InjectMocks is null.
Please make sure the instance is created *before* MockitoAnnotations.initMocks();
Example of correct usage:
   class SomeTest {
      @InjectMocks private Foo foo = new Foo();

      @Before public void setUp() {
         MockitoAnnotations.initMock(this);

    at org.mockito.internal.runners.JUnit45AndHigherRunnerImpl$1.withBefores(JUnit45AndHigherRunnerImpl.java:27)
    at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:276)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)

Surefire plugin Config

   <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.4.2</version>
        <executions>
          <execution>
            <id>default-test</id>
            <phase>test</phase>
            <goals>
              <goal>test</goal>
            </goals>
            <configuration>
              <excludes>
                <exclude>**/*IntegrationTest*.java</exclude>
              </excludes>
              <includes>
                <include>**/*UnitTest*.java</include>
              </includes>
              <skip>false</skip>
            </configuration>
          </execution>
        </executions>
        <configuration>
          <excludes>
            <exclude>**/*IntegrationTest*.java</exclude>
          </excludes>  
          <includes>
                <include>**/*UnitTest*.java</include>
          </includes>            
          <skip>false</skip>
        </configuration>
      </plugin>

I have followed the steps at this JUnit tests pass in Eclipse but fail in Maven Surefire But no luck.

Any help here.

Updating Mockito solved the issue

<dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-all</artifactId>
        <version>1.10.19</version>
        <scope>test</scope>
</dependency>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM