public void TestStudentView() { var studentView = new StudentView(); var result = studentView.ResponseAsString(MockDAO.SelectForStudentType("Undergraduate"), "Name", "Test"); Assert.IsType <string>(result); }
public StudentTests() { /* Mock of the DAO */ DAO = new MockDAO(); }