Beispiel #1
0
 public void NotEquals()
 {
     Assert.True(SqlString.NotEquals(_test1, _test2).Value);
     Assert.True(SqlString.NotEquals(_test2, _test1).Value);
     Assert.True(SqlString.NotEquals(_test3, _test1).Value);
     Assert.False(SqlString.NotEquals(_test2, _test3).Value);
     Assert.True(SqlString.NotEquals(SqlString.Null, _test3).IsNull);
 }
Beispiel #2
0
 public void NotEquals()
 {
     Assert.IsTrue(SqlString.NotEquals(Test1, Test2).Value, "#J01");
     Assert.IsTrue(SqlString.NotEquals(Test2, Test1).Value, "#J02");
     Assert.IsTrue(SqlString.NotEquals(Test3, Test1).Value, "#J03");
     Assert.IsTrue(!SqlString.NotEquals(Test2, Test3).Value, "#J04");
     Assert.IsTrue(SqlString.NotEquals(SqlString.Null, Test3).IsNull, "#J05");
 }