junit单元测试的使用
作者:互联网
单元测试
@Test注解只有在方法上有效,只要加了这个注解的方法,就可以直接运行!
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
@Test
public void findAllTwo(){
System.out.println("这是一个测试方法");
}
标签:4.12,单元测试,System,使用,Test,注解,junit 来源: https://blog.csdn.net/weixin_45717907/article/details/117935085