天天看点

在maven中使用Junit4单元测试

pom文件

<dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <!-- 不设置scope就是全局
        <scope>test</scope>   -->
        </dependency>
           

编写单元测试类

import org.junit.Test;

public class Test1 {
	//有一点需要注意的是编写的单元测试类不能名字为Test,否则会报错
    @Test
    public void tes1() {
        System.out.println("hello world");
    }
}