- 点击 file =》Project Structure =》module =》 Dependencies 添加 jar 包
- 在IDEA的安装目录下找到 junit-4.12.jar 和 hamcrest-core-1.3.jar 添加到工程里
D:\Program Files\IntelliJ\IntelliJ IDEA 2018.3.5\lib\junit-4.12.jar
D:\Program Files\IntelliJ\IntelliJ IDEA 2018.3.5\lib\hamcrest-core-1.3.jar
- 在代码中要测试的函数上加上 @Test 就可以直接运行这个函数
@Test
public void testTransaction() {
// Test Demo
}
运行
网友评论