public void testBuyTicketWithMoneyOnTheCard()
        {
            testCard.extendBalance(50);

            bool result = testCard.buyTicket();

            Assert.IsTrue(result);
        }