我应该使用哪个断言的JUnit?

时间:2014-02-10 07:43:29

标签: junit junit4

我用

assertEquals(String, String)

在JUnit测试中。 Netbeans(或者是Maven?)建议我添加一个导入:

org.junit.assert.assertEquals
junit.framework.assert.assertEquals
junit.framework.testcase.assertEquals

我应该使用哪一个?为什么?

编辑:

与问题differences between 2 JUnit Assert classes相比,这个问题列出了三个可能的进口,而另一个问题则是两个。

1 个答案:

答案 0 :(得分:5)

  

Do not use any classes in junit.framework or junit.extensions

在JUnit 3中使用了包junit.framework.*

在JUnit 4中使用包org.junit.*