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