public void LoginException_CanInstantiateWithInnerException() { var ex = new LoginException("hallo", new Exception("test")); }
public void LoginException_CanInstantiateWithMessage() { var ex = new LoginException("bye"); }
public void LoginException_CanInstantiateDefault() { var ex = new LoginException(); Assert.IsNotNull(ex); Assert.IsInstanceOfType(ex, typeof(Exception)); }