public void DisposeTest() { int bankId = 0; // TODO: Initialize to an appropriate value BankClient target = new BankClient(bankId); // TODO: Initialize to an appropriate value target.Dispose(); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void GetPaymentCardsTest() { int bankId = 0; // TODO: Initialize to an appropriate value BankClient target = new BankClient(bankId); // TODO: Initialize to an appropriate value IEnumerable<PaymentCard> expected = null; // TODO: Initialize to an appropriate value IEnumerable<PaymentCard> actual; actual = target.GetPaymentCards(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void GetTransactionsTest() { int bankId = 0; // TODO: Initialize to an appropriate value BankClient target = new BankClient(bankId); // TODO: Initialize to an appropriate value PaymentCard card = null; // TODO: Initialize to an appropriate value DateTime startDate = new DateTime(); // TODO: Initialize to an appropriate value IEnumerable<AccountTransaction> expected = null; // TODO: Initialize to an appropriate value IEnumerable<AccountTransaction> actual; actual = target.GetTransactions(card, startDate); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void BankClientConstructorTest() { int bankId = 0; // TODO: Initialize to an appropriate value BankClient target = new BankClient(bankId); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void LogoutTest() { int bankId = 0; // TODO: Initialize to an appropriate value BankClient target = new BankClient(bankId); // TODO: Initialize to an appropriate value bool cleanAuthCookies = false; // TODO: Initialize to an appropriate value target.Logout(cleanAuthCookies); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void LoginTest() { int bankId = 0; // TODO: Initialize to an appropriate value BankClient target = new BankClient(bankId); // TODO: Initialize to an appropriate value string userName = string.Empty; // TODO: Initialize to an appropriate value string password = string.Empty; // TODO: Initialize to an appropriate value LoginResponse expected = null; // TODO: Initialize to an appropriate value LoginResponse actual; actual = target.Login(userName, password); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void Init() { _client = new BankClient(15); }