運行下面的測試時,將println
語句輸出爲Gen()
。Gen.choose()和.oneOf()的輸出
基礎上ScalaCheck docs,我會一直期待的輸出爲:
(數字,數字)
「你好」 或 「世界」
class TestScalaCheck extends FlatSpec {
@author first test - https://github.com/rickynils/scalacheck/wiki/User-Guide
"a test" should "print out Gen.choose(1, 100)" in {
val myGen = for {
n <- Gen.choose(10,20)
m <- Gen.choose(2*n, 500)
} yield (n,m)
println(myGen)
val c = Gen.oneOf("Hello", "World")
println(c)
}
}
謝謝你,Ash。 –