# 单元测试
pom引入
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
1
2
3
4
5
6
2
3
4
5
6
1.判断是否为空
Assert.assertNotNull(Object object);
Assert.assertNotNull(String message, Object object)
为空时抛出异常和message
2.比较测试传递进去的两个参数
Assert.assertEquals();
及其重载方法: 1. 如果两者一致, 程序继续往下运行. 2. 如果两者不一致, 中断测试方法, 抛出异常信息 AssertionFailedError .