コード例 #1
0
        public void TestAccuracyKeyInfoExceptionConstructor3()
        {
            Exception        ex   = new Exception("Inner Exception Message");
            KeyInfoException excp =
                new KeyInfoException("Error Message", ex);

            Assert.AreEqual(excp.Message, "Error Message", "Exception message has wrong value");
            Assert.AreEqual(excp.InnerException, ex, "Inner exception has wrong value");
            Assert.AreEqual(excp.InnerException.Message, "Inner Exception Message",
                            "Inner exception message has wrong value");
        }
コード例 #2
0
        public void TestAccuracyKeyInfoExceptionConstructor2()
        {
            KeyInfoException excp = new KeyInfoException("Error Message");

            Assert.AreEqual(excp.Message, "Error Message", "Exception message has wrong value");
        }
コード例 #3
0
 public void TestAccuracyKeyInfoExceptionConstructor1()
 {
     KeyInfoException excp = new KeyInfoException();
 }