Intellj idea 中创建测试 test

在idea中创建测试类有两种方法:

1)鼠标点中类名,使用"Alt+Enter", 会弹出intention action -> create tests


Intellj idea 中创建测试 test_第1张图片
 

2)鼠标点中类名,使用“Ctrl+Shift+T”(默认), 会弹出 create new test



 

弹出的窗口,输入父类/包名,选择需要生成的method


Intellj idea 中创建测试 test_第2张图片
 

这里说明下:如果是多模块工程,选择对应的包名(一般一个模块一个包名)会直接将代码生成到指定定包所在的模块下。

 

》》对于没有生成测试的方法:

在业务类中选中任意的方法,使用“Alt+Enter”,会弹出intention action-> generate missed test methods

在弹出的窗口中做相应的操作即可。


Intellj idea 中创建测试 test_第3张图片

原文地址: https://rept.iteye.com/blog/2333643

你可能感兴趣的:(Intellj idea 中创建测试 test)