是否可以在属性定义的站点指定执行该属性的次数?

时间:2015-04-09 23:20:12

标签: scala specs2 scalacheck

如:

class MySpec extends Specification with ScalaCheck { def is = s2"""
  MyThing should
    do something the right way $x1
                                """
    def x1 = prop(4 /*times*/) { (...) =>
      ...
    }
  }
}

1 个答案:

答案 0 :(得分:1)

使用setParametersminTestsOk

class MySpec extends Specification with ScalaCheck { def is = s2"""
  MyThing should
    do something the right way $x1
                                """
    def x1 = prop { (...) =>
      ...
    }.set(minTestsOk = 1)
  }
}