1、IDEA无法下载JUnitGenerator插件
报错:
PluginJUnitGeneratorV2.0 was not installed: Cannot download ‘http://plugins.jetbrains.com/pluginManager/?action=download&id=org.intellij.plugins.junitgen&build=IU-162.2228.15&uuid=6a6cb9f5-4107-46d7-9b1c-d8205218a73b‘: Software caused connection abort: recv failed
解决办法:
下载JUnitGenerator.jar到本地后选择从硬盘安装插件
<1>下载到本地
http://plugins.jetbrains.com/pluginManager/?action=download&id=org.intellij.plugins.junitgen&build=IU-162.2228.15&uuid=6a6cb9f5-4107-46d7-9b1c-d8205218a73b
https://plugins.jetbrains.com/plugin/3064-junitgenerator-v2-0
<2>file->settting->plugins->install plugin from disk
2、IDEA自动生成JUnitTest文件异常
<1>包名异常
如 被测类在src目录下,直接生成的junit test类的包名为 package test.; 多了个点
解决方法:
file->settting->other settings->JUnit Generator ->Junit4
修改junit test类的模板 package test.$entry.packageName; 改为package $entry.packageName;
<2>生成的junit test文件编码异常
项目默认编码为UTF-8,windows系统编码默认为GBK
点击Reload in another encoding,切换编码
<3>日期乱码
如:@since
ʮһ�� 26, 2018
解决方法:
file->settting->other settings->JUnit Generator ->Junit4
修改junit test类的模板 * @since
$date改为 @since
$today
3、运行测试文件时报错
<1>junit not found
原因:项目lib中无junit.jar
解决方法:
下载junit4.jar,手动添加到lib中或maven添加junit4.jar依赖
maven仓库地址如下,可手动点击files>>jar下载jar包,或者在maven,gradle中添加依赖
https://mvnrepository.com/artifact/junit/junit/4.12
注:IDEA安装路径下有自带junit的jar包,可按以下方法操作
File -> Project Struct... -> Libraies -> 点击绿色的加号 -> Java -> 找到 IDEA 安装路径下的 Lib 中的junit-4.12 -> 确定完就行了,点击OK就出去了
<2>java.lang.NoClassDefFoundError: org/hamcrest/SelfDescribing
原因:缺失hamcrest的jar包
解决方法:同junit,链接如下
https://mvnrepository.com/artifact/org.hamcrest/hamcrest-all/1.3
4、修改项目编码
File>>Setting>>File EnCoding 修改当前项目编码
File>>Other Settins>>Setting for new projects 修改IDEA的默认编码
5、运行单元测试出现乱码
<1>解决方法:
Run->Edit configuration->TestNG/JUnit->对应的测试用例,添加VM参数:-Dfile.encoding=UTF-8,设置后再执行单元测试
<2>解决方法:
更改idea的启动VM参数
到
在文件在末尾添加 -Dfile.encoding=UTF8 ,重新启动idea