コード例 #1
0
        public void NotVerifiedExceptionConstructorTest()
        {
            string msg = "TestValue"; // TODO: Initialize to an appropriate value
            NotVerifiedException target = new NotVerifiedException(msg);

            Assert.AreEqual(target.Message, msg);
        }
コード例 #2
0
        public void NotVerifiedExceptionConstructorTest1()
        {
            NotVerifiedException target = new NotVerifiedException();

            Assert.IsNotNull(target);
        }