public void TermsNotAgreedExceptionConstructorTest1()
        {
            TermsNotAgreedException target = new TermsNotAgreedException();

            Assert.IsNotNull(target);
            Assert.IsNotNull(target.Message);
        }
        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);
        }