0

我有以下功能,我想用 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

如何进行属性实现?

4

1 回答 1

1

您可以像这样添加 Windows 路径前缀:

val strGen = Gen.alphaStr // Or any other String generator
val windowsPathGen = strGen.map("C:\temp\foo" + _)
于 2017-11-08T10:54:19.170 回答