public void OneLeg()
        {
            var trip = new TripSorter(new[] { new TripLeg("A", "B") }).Sort();

            Assert.That(trip.Single().Begin, Is.EqualTo("A"));
        }