无法使用Spring运行JUnit测试

时间:2019-10-28 09:08:44

标签: spring junit

我有一个看起来像这样的测试班:

@RunWith(SpringRunner.class)
@SpringBootTest
public class myTests {

    @Autowired
    private MyComponent myComponent;

    @Test
    public void test1() { ... }
}

我收到一个初始化错误和一个异常:

java.lang.Exception: No tests found matching...

1 个答案:

答案 0 :(得分:0)

看看您的进口货;为了使代码按您预期的方式工作,您的导入内容应包括:

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

但是根据您的IDE的配置,默认情况下有时有时会遇到不同版本的junit,这在Spring Boot中无法很好地发挥作用。

如果上述导入对您不起作用,则可能需要在pom.xml中添加以下maven依赖项:

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>