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