public void TestCtor() { Exception ex = new BindDataInvalidException(); Assert.IsTrue(ex is ApplicationException, "Wrong definiton of exception class."); Assert.IsTrue(ex is DateDropDownException, "Wrong definiton of exception class."); }
public void TestCtorMessageInner_Valid() { Exception e = new BindDataInvalidException(message, cause); Assert.AreEqual(message, e.Message, "e.Message should be equal to message."); Assert.AreEqual(cause, e.InnerException, "e.InnerException should be equal to cause."); }
public void TestCtorInfoContext() { // Stream for serialization. using (Stream stream = new MemoryStream()) { // Serialize the instance. BindDataInvalidException serial = new BindDataInvalidException(message, cause); BinaryFormatter formatter = new BinaryFormatter(); formatter.Serialize(stream, serial); // Deserialize the instance. stream.Seek(0, SeekOrigin.Begin); BindDataInvalidException deserial = formatter.Deserialize(stream) as BindDataInvalidException; // Verify the instance. Assert.IsFalse(serial == deserial, "Instance not deserialized."); Assert.AreEqual(serial.Message, deserial.Message, "Message mismatches."); Assert.AreEqual(serial.InnerException.Message, deserial.InnerException.Message, "InnerException mismatches."); } }
public void TestCtorMessageInner_Null2() { Exception e = new BindDataInvalidException(null, cause); Assert.AreEqual(cause, e.InnerException, "e.InnerException should be equal to cause."); }
public void TestCtorMessageInner_Null1() { Exception e = new BindDataInvalidException(message, null); Assert.AreEqual(message, e.Message, "e.Message should be equal to message."); }