public void totalFairForJourney()
        {
            InvoiceGenerator generate = new InvoiceGenerator();
            int Fair = generate.totalFair(5, 60);

            Assert.AreEqual(110, Fair);
        }