将行添加到IntelliJ中自动生成的JUnit 5测试方法的`BODY`元素中

时间:2019-02-22 01:16:27

标签: templates intellij-idea junit junit5 junit-jupiter

使用IntelliJ菜单项.env.development> Code> Generate…生成JUnit 5测试类时,结果由Test / {中定义的模板控制{1}}> Preferences> Settings> Editor(标签)> File and Code Templates(列表项)。该项目的内容如下所示:

Code

运行时,它会产生如下内容:

JUnit5 Test Method

如何更改该模板以产生此结果:

@org.junit.jupiter.api.Test
void ${NAME}() {
  ${BODY}
}

我不知道如何处理名为@Test void parse () { } 的变量,我想在其中添加此硬编码的注释行和空白行。

0 个答案:

没有答案