Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 codePro 工具生成 junit。由于我使用的是JDK1.4,所以我在codePro设置中选择了junit3。
尽管我设置了 junit-3,但测试用例是在 junit-4 中生成的(带有注释)
第一个屏幕截图显示我的设置显示了我在 junit-3 上的选择 第二个屏幕截图显示测试用例生成基于 junit-4
请指导我
我发现它为什么会发生。
即使我选择了 junit-3,我的类路径中也没有 junit-3 jar 文件,因此 eclipse 使用了插件文件夹中的 junit 4 jar 文件
现在包含 junit-3 jar 文件后,我可以使用 junit-3 生成测试用例。