发布时间:2024-01-23 15:00
在熟悉hutool工具包时出现的关于Assert.assertEquals()的报错及其解决方法
build.gradle文件
plugins { id \'java\' } group \'com.sukn\' version \'1.0-SNAPSHOT\' sourceCompatibility = 1.8 repositories { //1.优先查找本地maven库,性能最好 mavenLocal() //2.其次查找aliyun maven库 maven{ url\'http://maven.aliyun.com/nexus/content/groups/public/\' } //3.最后查找maven中央库 mavenCentral() } dependencies { testCompile group: \'junit\', name: \'junit\', version: \'4.12\' compile \'cn.hutool:hutool-all:5.2.1\' }
(有问题的地方Alt+Enter)自动导入包cn.hutool.core.lang.Assert后,assertEquals报错
Assert中并无assertEquals()]方法
应该导org.junit.Assert而不是图中的cn.hutool.core.lang.Assert,但又出现了问题Cannot resolve symbol \'Assert‘
但是看了下External Libraries
网上找了下,很多人都说要在org.junit.Assert前面加个static
突然看到IDEA的自动提示中有个Add library ‘Gradle: junit:junit:4.12’ to classpath 点击之后就解决了,但是org.junit.Assert前面的static也没了
没想到等我一更新下gradle的依赖导入后,问题又出现了,一下子又回到解放前
网上也没有很好的解决方案,只能自己一步步尝试,最后想到了junit的依赖导入方式,感觉可以用compile代替下testCompile试试,最后终于好了。
build.gradle文件
plugins { id \'java\' } group \'com.sukn\' version \'1.0-SNAPSHOT\' sourceCompatibility = 1.8 repositories { //1.优先查找本地maven库,性能最好 mavenLocal() //2.其次查找aliyun maven库 maven{ url\'http://maven.aliyun.com/nexus/content/groups/public/\' } //3.最后查找maven中央库 mavenCentral() } dependencies { compile group: \'junit\', name: \'junit\', version: \'4.12\' compile \'cn.hutool:hutool-all:5.2.1\' }
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。