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