示例#1
0
 public void Should_Verify_Nand()
 {
     Assert.False(LogicalOperators.Nand(true, true));
     Assert.True(LogicalOperators.Nand(false, true));
     Assert.True(LogicalOperators.Nand(true, false));
     Assert.True(LogicalOperators.Nand(false, false));
 }