public void ReturnLime_WhenLimeZoneLocationEntered(string Destination, string Colour)
        {
            // Arrange
            var fc = new FastwayCourier.ParcelQuoteFromNelson();


            // Act
            Zone = fc.GetDestinationZone(Destination);

            ExpectedColour = "Lime";

            // Assert
            Assert.AreEqual(Zone, ExpectedColour);
        }
        public void Throw_KeyNotFoundException()
        {
            // Arrange
            var fc = new FastwayCourier.ParcelQuoteFromNelson();


            // Act
            Zone = fc.GetDestinationZone("Masldhslfhsdlifjapisdj[gsj[wt[");

            ExpectedColour = "Lime";

            // Assert
            Assert.AreEqual(Zone, ExpectedColour);
        }