Spec2单元测试未编译

时间:2012-06-21 14:07:40

标签: unit-testing scala specs2

我写了一个中值函数,想为它添加一些单元测试。

所以我在specs2中写了这个

class TestStats extends Specification {
  "Median function " should {
    "be None for an empty list" in { Stats.median([]) must beNone }
    "be the midpoint of an odd length list" in { Stats.median([1,2,3]) must_== Some(2)}
    "be the average of the two midpoints of an even length list" in { Stats.median([1,2,3,4])     must_== Some(2.5)}
  }
}

但是,它不能使用No implicit view available from Option[Double] => org.specs2.execute.Result.行上的错误"be None...进行编译。

我不明白为什么要在这里要求这个。我真的应该写一个隐含的自己做这个比较吗?

编辑所以问题纯粹是语法问题 - 请参阅下面的答案。我有点恼火,因为语义错误向我报告了一个语法错误,这就是为什么我从未想到我的列表文字是错误的。

1 个答案:

答案 0 :(得分:1)

显然,我最近花了很长时间做Python。 更正列表文字语法可以解决问题:

class TestStats extends Specification {
  "Median function " should {
    "be None for an empty list" in { median(Nil) must_== None }
    "be the midpoint of an odd length list" in { median(List(1, 2, 3)) must_== Some(2) }
    "be the average of the two midpoints of an even length list" in { median(List(1, 2, 3, 4)) must_== Some(2.5) }
  }
}