Springboot整合Junit4

网上五花八门,写个实测过的方案

依赖导入


	org.springframework.boot
	spring-boot-starter-test
	test



	junit
	junit
	4.12

测试类

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

    @Autowired
    OqcJudgeRecordService oqcJudgeRecordService;

    @org.junit.Test
    public void test1() {
        oqcJudgeRecordService.saveJudgeInfo(new Oqc());
        System.out.println("this is test1");
    }
}

代码很简单,别人写勾八一堆,最后还跑不起来,就离谱。

如果不需要实例注入,连容器都不用启动,也就是省略掉@SpringbootTest 和 @Runwith注解。

你可能感兴趣的:(spring,boot,junit,java)