예제 #1
0
 public void TermsNotAgreedExceptionConstructorTest()
 {
     string msg = "TestValue"; // TODO: Initialize to an appropriate value
     TermsNotAgreedException target = new TermsNotAgreedException(msg);
     Assert.IsNotNull(target);
     Assert.AreEqual(msg, target.Message);
 }
예제 #2
0
 public void TermsNotAgreedExceptionConstructorTest1()
 {
     TermsNotAgreedException target = new TermsNotAgreedException();
     Assert.IsNotNull(target);
     Assert.IsNotNull(target.Message);
 }