Пример #1
0
 public void LoginException_CanInstantiateWithInnerException()
 {
     var ex = new LoginException("hallo", new Exception("test"));
 }
Пример #2
0
 public void LoginException_CanInstantiateWithMessage()
 {
     var ex = new LoginException("bye");
 }
Пример #3
0
 public void LoginException_CanInstantiateDefault()
 {
     var ex = new LoginException();
     Assert.IsNotNull(ex);
     Assert.IsInstanceOfType(ex, typeof(Exception));
 }