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