public void CanReadCvs() { FileAccountRepository repo = new FileAccountRepository(); Account account = new Account(); Dictionary <string, Account> accounts = new Dictionary <string, Account>(); accounts = repo.ReadAccountCSV(_filePath); Account check = accounts["22222"]; Assert.AreEqual("22222", check.AccountNumber); Assert.AreEqual("Basic Customer", check.Name); Assert.AreEqual(500, check.Balance); Assert.AreEqual(AccountType.Basic, check.Type); }