Android重建项目,包org.junit不存在错误

时间:2016-06-02 06:36:43

标签: java android junit

Error:(3, 17) error: package org.junit does not exist
Error:(5, 24) error: package org.junit does not exist
Error:(11, 6) error: cannot find symbol class Test
Error:(13, 9) error: cannot find symbol method assertEquals(int,int)
:app:compileDebugUnitTestJavaWithJavac FAILED
Error:Execution failed for task ':app:compileDebugUnitTestJavaWithJavac'

  

编译失败;有关详细信息,请参阅编译器错误输出。

当我运行rebuild时,错误就是那些。但我可以在没有重建的情况下运行我的应用程序。

我不使用测试,我不知道它是如何来到我的文件夹。

代码是:

import org.junit.Test;

import static org.junit.Assert.*;

/**
 * To work on unit tests, switch the Test Artifact in the Build Variants view.
 */
public class ExampleUnitTest {
    @Test
    public void addition_isCorrect() throws Exception {
        assertEquals(4, 2 + 2);
    }
}

2 个答案:

答案 0 :(得分:4)

将此添加到build.gradle

dependencies {
    ...
    testCompile 'junit:junit:4.12'
}

答案 1 :(得分:0)

当我从另一个项目复制/粘贴文件时,发生了这个错误。

关闭Android Studio并重新开启解决了这个问题。