Beispiel #1
0
 public void TestAssertNotNegativeWhenNegative()
 {
     ValidationUtils.AssertNotNegative(-1, "foo");
 }
Beispiel #2
0
 public void TestAssertNotNegative()
 {
     ValidationUtils.AssertNotNegative(64, "foo");
     ValidationUtils.AssertNotNegative(0, "foo");
 }