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