Пример #1
0
 public void WorkHoursGetAllWorkHoursForDayTest()
 {
     DataManager target = new DataManager(); // TODO: Initialize to an appropriate value
     float expected = 10; // TODO: Initialize to an appropriate value
     float actual;
     actual = target.WorkHoursGetAllWorkHoursForDay(DateTime.Parse("1.12.12"));
     Assert.AreEqual(expected, actual);
     //Assert.Inconclusive("Verify the correctness of this test method.");
 }
Пример #2
0
 public void WorkHoursGetAllWorkHoursForDayTest()
 {
     DataManager target = new DataManager();
     float expected = 30;
     float actual;
     actual = target.WorkHoursGetAllWorkHoursForDay(DateTime.Parse("3.12.12"));
     Assert.AreEqual(expected, actual);
 }