Пример #1
0
 public void WorkHoursGetProgrammerWorkHoursForDayTest()
 {
     DataManager target = new DataManager(); // TODO: Initialize to an appropriate value
     float expected = -1; // TODO: Initialize to an appropriate value
     float actual;
     DateTime day = DateTime.Parse("20.1.13");
     actual = target.WorkHoursGetProgrammerWorkHoursForDay(1,day);
     Assert.AreEqual(expected, actual);
     //Assert.Inconclusive("Verify the correctness of this test method.");
 }