예제 #1
0
 public void TestNotLessThanFalse()
 {
     Assert.Throws <XAssertionFailedException>(() =>
     {
         XAssert.That(1, IsNot.LessThan(2));
     });
 }
예제 #2
0
 public void TestNotLessThanTrue()
 {
     XAssert.That(2, IsNot.LessThan(1));
 }