public void FifthTest()
 {
     StringAssert.AreEqualIgnoringCase("02:00", ClockInMirror.WhatIsTheTime("10:00"));
 }
 public void ThirdTest()
 {
     StringAssert.AreEqualIgnoringCase("12:02", ClockInMirror.WhatIsTheTime("11:58"));
 }
 public void FirstTest()
 {
     StringAssert.AreEqualIgnoringCase("06:35", ClockInMirror.WhatIsTheTime("05:25"));
 }
 public void SecondTest()
 {
     StringAssert.AreEqualIgnoringCase("11:59", ClockInMirror.WhatIsTheTime("12:01"));
 }
Ejemplo n.º 5
0
 [InlineData("01:15", "10:45")] // Before 06:00 o'clock
 public void Test(string timeInMirror, string expectedActualTime)
 {
     Assert.Equal(expectedActualTime, ClockInMirror.WhatIsTheTime(timeInMirror));
 }