Idea单元测试Junit Generator设置

Posted exmyth

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Idea单元测试Junit Generator设置相关的知识,希望对你有一定的参考价值。

0. setting--->plugins--->brose repostories-->输入JUnitGenerator V2.0

1.junit generator自动生成测试代码缺省和java类在同一报下,不匹配maven项目标准测试目录。修改设置,查询junit Generator
2.outpath设置为${SOURCEPATH}/../../test/java/${PACKAGE}/${FILENAME}【default template选junit4】

3.点击Properties最右侧的Junit4,修改模板。将@since <pre>$date</pre> 改为@since <pre>$today</pre>。 这样就不会出现日期乱码。

package test.$entry.packageName;  改为 package  $entry.packageName;   符合maven的对应目录。
4.自动生成测试代码的快捷键:在待编写测试的java类源码块上按快捷键:alt+insert 或ctrl+shift+T

以上是关于Idea单元测试Junit Generator设置的主要内容,如果未能解决你的问题,请参考以下文章

转载IntelliJ IDEA配置JUnit进行单元测试

4-7《Java的调试与优化(IDEA)》——junit单元测试debug调试IDEA常用快捷键

IDEA 中的 Junit 单元测试

JUnit单元测试--IntelliJ IDEA

IDEA 运行junit单元测试方法

idea spring boot 1.x junit单元测试