Which JUnit package to use on Assert?
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
differences between 2 JUnit Assert classes
我的类路径中有两个junit-4.8.1.jars,我的IDE的自动完成功能给了我以下两个Assert类:
- junit.framework.Assert
- org.junit.Assert
我应该使用哪一个???
引用重复...
JUnit 3.X: junit.framework.Assert JUnit 4.X: org.junit.Assert
Prefer the newest one, especially when running JDK5 and higher with
annotation support.
我更喜欢JUnit中的
选择一个并保持一致。
Niether,使用
MatcherAssert