public void PicoPlaca_WitplateInSameDayInOfSchedule_ReturnsFalse()
        {
            //Arrange
            string plate    = "IBB3555";
            string date     = "27/02/2020";
            string time     = "09:00";
            bool   expexted = false;

            //Act
            bool output = PicoPlaca.IsCarAbleToCirculate(plate, date, time);

            //Assert
            Assert.AreEqual(expexted, output);
        }
        public void PicoPlaca_WitplateInDifferentDay_ReturnsTrue()
        {
            //Arrange
            string plate    = "IBB3555";
            string date     = "20/02/2020";
            string time     = "08:00";
            bool   expexted = true;

            //Act
            bool output = PicoPlaca.IsCarAbleToCirculate(plate, date, time);

            //Assert
            Assert.AreEqual(expexted, output);
        }