public void CreateReserveByProperties()
        {
            TestSystem testSystem = new TestSystem();
            string     result     = testSystem.CreateReserveByProperties();
            DateTime   Start_Time = new DateTime(2019, 11, 21, 17, 0, 0);
            string     expected   = "Uruguay: 092111222|SBS 1234|30|" + Start_Time + "|" + Start_Time.AddMinutes(30);

            Assert.AreEqual(expected, result);
        }