public void TestCtorInfoContext()
        {
            // Stream for serialization.
            using (Stream stream = new MemoryStream())
            {
                // Serialize the instance.
                InvalidSecurityIdFormatException serial =
                    new InvalidSecurityIdFormatException(message, cause);
                BinaryFormatter formatter = new BinaryFormatter();
                formatter.Serialize(stream, serial);

                // Deserialize the instance.
                stream.Seek(0, SeekOrigin.Begin);
                InvalidSecurityIdFormatException deserial =
                    formatter.Deserialize(stream) as InvalidSecurityIdFormatException;

                // 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_Null1()
 {
     Exception e = new InvalidSecurityIdFormatException(message, null);
     Assert.AreEqual(message, e.Message, "e.Message should be equal to message.");
 }
 public void TestCtorMessageInner_Valid()
 {
     Exception e = new InvalidSecurityIdFormatException(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.");
 }