单元测试
@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("这是一个测试方法");
}