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("这是一个测试方法");
    }
上一篇:JavaWeb-1.1【基础加强:Junit单元测试】


下一篇:Junit单元测试(Idea版)