我有以下功能,我想用 ScalaCheck 测试它:
object Windows {
val Directory = "^[a-zA-Z]:\\\\(((?![<>:\"/\\\\|?*]).)+((?<![ .])\\\\)?)*$".r
def arePathsValid(paths: List[String]): Eval[List[String]] = {
Foldable[List]
.foldRight(paths, Eval.later(List.empty[String]))((a: String, b: Eval[List[String]]) => {
Directory.findFirstIn(a) match {
case Some(a) => b.map(a :: _)
case None => b
}
})
}
}
我试着从:
val propPaths = forAll { l: List[String] => ??? }
但无法编写该属性的实现。
String
应在 中随机生成的,List
应具有 Windows 模式路径,例如:
C:\temp\foo
如何进行属性实现?