gpt4 book ai didi

scala - Specs2 - "should not equal to"- 如何检查不相等?

转载 作者:行者123 更新时间:2023-12-01 22:17:32 25 4
gpt4 key购买 nike

有很多 examples关于如何在 Specs2 中检查相等性,但没有关于如何检查不相等性的示例。

我尝试了(除其他外)以下但它没有用:

"type safe get should work" in {
Get("/SimpleLine") ~> getRoute[SimpleLine] ~> check {
responseAs[String] shouldEqual "my name is SimpleLine"
responseAs[String] shouldNot equal to "my name is SimpleLine2"
}
}

我怎样才能使这个工作?

如何检查 Specs2 中的不相等性?

Google 没有帮助。

最佳答案

以下任一项:

  • "a"不应该等于 "b"
  • "a"shouldNotEqual "b"
  • "a"should_!= "b"
  • "a"不能等于 "b"
  • "a"mustNotEqual "b"
  • "a"must_!= "b"

关于scala - Specs2 - "should not equal to"- 如何检查不相等?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43696461/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com