示例#1
0
 public void HexXor_InvalidInputs_Throws(string hexA, string hexB, Type exceptionType)
 {
     Assert.Throws(exceptionType, () => Challenge2.HexXor(hexA, hexB));
 }
示例#2
0
 public void HexXor_ValidData_ValidReturn(string hexA, string hexB, string hexResult)
 {
     Assert.Equal(hexResult, Challenge2.HexXor(hexA, hexB));
 }