当mock()方法有效时,为什么Mockito的@Mock注释会失败

时间:2015-01-23 11:45:53

标签: java android-studio annotations mockito

这是来自build.gradle的相关位:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'

    androidTestCompile "org.mockito:mockito-core:1.10.19"
    androidTestCompile 'com.google.dexmaker:dexmaker:1.0'
    androidTestCompile('com.google.dexmaker:dexmaker-mockito:1.0') {
        exclude module: 'hamcrest-core'
        exclude module: 'objenesis'
        exclude module: 'mockito-core'
    }
    androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
}

当我使用@Mock注释来声明模拟时,它是空的。但是当我使用

context = mock(Context.class);

然后我得到一个正确的模拟对象。如果重要的话,我会在Junit-3 TestCase中使用它。

为什么注释不起作用?

1 个答案:

答案 0 :(得分:3)

如果您使用JUnit 3,则必须在测试中使用MockitoAnnotations设置方法:

public class ATest extends TestCase {
    public void setUp() {
        MockitoAnnotations.initMocks(this);
    }

    // ...
}

注释不是开箱即用的,你必须指示JUnit做点什么。有关JUnit 4的完整参考,您还有其他推荐选项:

使用JUnit跑步者

@RunWith(MockitoJUnitRunner.class)
public class ATest {
    @Mock Whatever w;

    // ...
}

或使用JUnit规则

public class ATest {
    @Rule MockitoRule mockitoRule = MockitoJUnit.rule();
    @Mock Whatever w;

    // ...
}