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.");
 }