public void AccountDeletedExceptionConstructorTest()
 {
     string msg ="Something"; 
     AccountDeletedException target = new AccountDeletedException(msg);
     Assert.IsNotNull(target); 
     Assert.AreEqual(target.Message , msg); 
 }
 public void AccountDeletedExceptionConstructorTest1()
 {
     AccountDeletedException target = new AccountDeletedException();
     Assert.IsNotNull(target); 
 }