我发现Hamcrest
使用起来很方便JUnit
。现在我要使用ScalaTest
. 我知道我可以使用Hamcrest
,但我想知道我是否真的应该使用。不ScalaTest
提供类似的功能?是否有任何其他 Scala 库用于此目的(匹配器)?
人们使用Hamcrest
withScalaTest
吗?
我发现Hamcrest
使用起来很方便JUnit
。现在我要使用ScalaTest
. 我知道我可以使用Hamcrest
,但我想知道我是否真的应该使用。不ScalaTest
提供类似的功能?是否有任何其他 Scala 库用于此目的(匹配器)?
人们使用Hamcrest
withScalaTest
吗?
正如迈克尔所说,您可以使用ScalaTest 的 matchers。只要确保你Matchers
在你的测试类中进行扩展。它们可以很好地替代 Hamcrest 的功能,利用 Scala 特性,并且在我看来在 Scala 中更自然。
在这里,您可以通过几个示例比较 Hamcrest 和 ScalaTest 匹配器:
val x = "abc"
val y = 3
val list = new util.ArrayList(asList("x", "y", "z"))
val map = Map("k" -> "v")
// equality
assertThat(x, is("abc")) // Hamcrest
x shouldBe "abc" // ScalaTest
// nullity
assertThat(x, is(notNullValue()))
x should not be null
// string matching
assertThat(x, startsWith("a"))
x should startWith("a")
x should fullyMatch regex "^a..$" // regex, no native support in Hamcrest AFAIK
// type check
assertThat("a", is(instanceOf[String](classOf[String])))
x shouldBe a [String]
// collection size
assertThat(list, hasSize(3))
list should have size 3
// collection contents
assertThat(list, contains("x", "y", "z"))
list should contain theSameElementsInOrderAs Seq("x", "y", "z")
// map contents
map should contain("k" -> "v") // no native support in Hamcrest
// combining matchers
assertThat(y, both(greaterThan(1)).and(not(lessThan(3))))
y should (be > (1) and not be <(3))
...还有更多你可以用 ScalaTest 做的事情(例如使用 Scala 模式匹配,断言什么可以/不能编译,......)
不,你不需要带有 ScalaTest 的 Hamcrest。只需将ShouldMatchers
orMustMatchers
特征与您的规格混合即可。Must
和匹配器之间的区别在于Should
您只需使用must
而不是should
断言。
例子:
class SampleFlatSpec extends FlatSpec with ShouldMatchers {
// tests
}