コード例 #1
0
 public void GetGenresTest()
 {
     ShoutcastService_Accessor target = new ShoutcastService_Accessor(); // TODO: Initialize to an appropriate value
     List<ShoutcastGenre> expected = null; // TODO: Initialize to an appropriate value
     List<ShoutcastGenre> actual;
     actual = target.GetGenres();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
コード例 #2
0
 public void GetStationsByGenreTest()
 {
     ShoutcastService_Accessor target = new ShoutcastService_Accessor(); // TODO: Initialize to an appropriate value
     string genre = "60s"; // TODO: Initialize to an appropriate value
     List<ShoutcastStation> expected = null; // TODO: Initialize to an appropriate value
     List<ShoutcastStation> actual;
     actual = target.GetStationsByGenre(genre);
     Assert.AreEqual(expected, actual);
 }
コード例 #3
0
 public void CreateStationGenreListTest()
 {
     ShoutcastService_Accessor target = new ShoutcastService_Accessor(); // TODO: Initialize to an appropriate value
     string genreString = string.Empty; // TODO: Initialize to an appropriate value
     List<ShoutcastGenre> expected = null; // TODO: Initialize to an appropriate value
     List<ShoutcastGenre> actual;
     actual = target.CreateStationGenreList(genreString);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }