public void TestIsRelation() { var expr = new IsRelation() { Expr = new Expr() { Operand = Operand.n }, Value = 456 }; expr.Match("456").Should().BeTrue(); expr.Match("123").Should().BeFalse(); }