だから最初は持っていた
def parseB(string : String)(implicit context : Context) : Float = parseAll(gexp, string).get.eval(context).left.get
そしてテストで
implicit var context = Context()
parseB("False") should be(false)
parseB("False") should not be(true)
それから私はカスタムマッチャーを書きました
case class ReflectBooleanMatcher(value : Boolean)(implicit context : Context) extends Matcher[String] with ExpressionParser{
def parseB(string : String) : Boolean = parseAll(gexp, string).get.eval(context).right.get
def apply (string : String) : MatchResult =
MatchResult(parseB(string) == value, "", "")
}
だから私のテストは
"False" should reflectBoolean(false)
しかし
"False" should not reflectBoolean(true)
休憩 - もちろん、それが否定的に一致する可能性があるとは決して言いませんでした. それで、私はそれをどのように言うのですか?