private void AddAccount(string TextOfPhone) { Account NewAccount = new Account(0, TextOfPhone, CountryHandler); Repository.AddAccount(NewAccount); MessageAccountAdded(); }
public void AddAccountEmpty() { Account.Mobile = ""; Repository.AddAccount(Account); Assert.AreEqual(false, Repository.GetAccounts().Contains(Account)); }