1.导入依赖
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency>
2.创建测试类,类名结尾以Test结尾,在测试方法上打上@Te s t注解,即可。
3.在方法里面引入相关接口,然后创建对象,填充参数,调用方法即可。
1.导入依赖
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency>
2.创建测试类,类名结尾以Test结尾,在测试方法上打上@Te s t注解,即可。
3.在方法里面引入相关接口,然后创建对象,填充参数,调用方法即可。