コード例 #1
0
        public void TestAccuracySignatureManagerExceptionConstructor3()
        {
            Exception ex = new Exception("Inner Exception Message");
            SignatureManagerException excp =
                new SignatureManagerException("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 TestAccuracySignatureManagerExceptionConstructor2()
        {
            SignatureManagerException excp = new SignatureManagerException("Error Message");

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