public void Test() { // arrange IList <string> rooms = null; // act rooms = GoClassService.GetRooms("9", "seg"); // assert Assert.That(rooms, Is.Not.Null); }
// GET: api/Rooms public Response Get(string time, string dayWeek) { return(ParseResponse(GoClassService.GetRooms(time, dayWeek))); }