我喜欢IntelliJ的unit test creation功能,它可以为每个要测试的方法生成存根测试方法。是否可以定制生成的代码?例如,目前IntelliJ将创建以下测试:
public class MyClassTest {
@Test public void getVersion() {
}
}
有没有什么东西我可以修改,这样它也可以添加一个默认的构造函数调用,例如?
public class MyClassTest {
@Test public void getVersion() {
MyClass myClass = new MyClass();
}
}
我正在使用IntelliJ IDEA终极版2019.1。
1条答案
按热度按时间dgenwo3n1#
可以在“设置/首选项”中更改测试模板|编辑|文件和代码模板”:https://blog.codeleak.pl/2013/07/how-to-customize-code-templates-for.html