Exemplo n.º 1
0
 public void TestIsNotFalseFalse()
 {
     Assert.Throws <XAssertionFailedException>(() =>
     {
         XAssert.That(false, IsNot.False());
     });
 }
Exemplo n.º 2
0
 public void TestIsNotFalseTrue()
 {
     XAssert.That(true, IsNot.False());
 }