Ejemplo n.º 1
0
 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.");
 }
Ejemplo n.º 2
0
 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.");
 }
Ejemplo n.º 3
0
 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.");
 }
Ejemplo n.º 4
0
 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");
 }
Ejemplo n.º 5
0
 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.");
 }
Ejemplo n.º 6
0
 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);
 }