Example #1
0
 public void Dateget_current_dayTest()
 {
     DataManager target = new DataManager(); // TODO: Initialize to an appropriate value
     DateTime expected = DateTime.Today; // TODO: Initialize to an appropriate value
     DateTime actual;
     actual = target.DateGetCurrentDay();
     Assert.AreEqual(expected, actual);
     //Assert.Inconclusive("Verify the correctness of this test method.");
 }
Example #2
0
 public void Dateget_current_dayTest()
 {
     DataManager target = new DataManager();
     DateTime expected = DateTime.Today;
     DateTime actual;
     actual = target.DateGetCurrentDay();
     Assert.AreEqual(expected, actual);
 }