The import org.junit.Test conflicts with a type defined in the same file报错
情景:项目引入Junit后,进行单元测试,莫名其妙报了个这样的错误The import org.junit.Test conflicts with a type defined in the same file 原因1:常规原因,导入的jar包相冲突原因2:写junit测试的Java类名为Test.java 或者 包名也是Test,仍然会报这个错误。...