Esempio n. 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.");
 }
Esempio n. 2
0
 public void Dateget_current_dayTest()
 {
     DataManager target = new DataManager();
     DateTime expected = DateTime.Today;
     DateTime actual;
     actual = target.DateGetCurrentDay();
     Assert.AreEqual(expected, actual);
 }