public void NotVerifiedExceptionConstructorTest()
 {
     string msg = "TestValue"; // TODO: Initialize to an appropriate value
     NotVerifiedException target = new NotVerifiedException(msg);
     Assert.AreEqual(target.Message, msg);
 }
 public void NotVerifiedExceptionConstructorTest1()
 {
     NotVerifiedException target = new NotVerifiedException();
     Assert.IsNotNull(target);
 }