Exemplo n.º 1
0
        public void TestCtorMessageInner_Valid()
        {
            Exception e = new LayoutPreProcessingException(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.");
        }
Exemplo n.º 2
0
        public void TestCtorInfoContext()
        {
            // Stream for serialization.
            using (Stream stream = new MemoryStream())
            {
                // Serialize the instance.
                LayoutPreProcessingException serial =
                    new LayoutPreProcessingException(message, cause);
                BinaryFormatter formatter = new BinaryFormatter();
                formatter.Serialize(stream, serial);

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

                // 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.");
            }
        }
Exemplo n.º 3
0
        public void TestCtorMessageInner_Null1()
        {
            Exception e = new LayoutPreProcessingException(message, null);

            Assert.AreEqual(message, e.Message, "e.Message should be equal to message.");
        }
Exemplo n.º 4
0
        public void TestCtorMessage_Valid()
        {
            Exception e = new LayoutPreProcessingException(message);

            Assert.AreEqual(message, e.Message, "e.Message should be equal to message.");
        }
Exemplo n.º 5
0
        public void TestCtorMessageInner_Null2()
        {
            Exception e = new LayoutPreProcessingException(null, cause);

            Assert.AreEqual(cause, e.InnerException, "e.InnerException should be equal to cause.");
        }