Esempio n. 1
0
 public void GetStationListTest()
 {
     IList<Station> actual = new DataProvider().GetStationList();
     Assert.AreEqual(5, actual.Count, "we should have 5 records");
 }
Esempio n. 2
0
 public void GetYearListTest()
 {
     var actual = new DataProvider().GetYearList();
     Assert.AreEqual(5, actual.Count);
     //Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 3
0
 public void GetFeedBackListTest()
 {
     var actual = new DataProvider().GetFeedBackList();
     Assert.AreEqual(25, actual.Count, "we should have 25 records");
     //Assert.Inconclusive("Verify the correctness of this test method.");
 }