Ejemplo n.º 1
0
        public void TestStudentView()
        {
            var studentView = new StudentView();
            var result      = studentView.ResponseAsString(MockDAO.SelectForStudentType("Undergraduate"), "Name", "Test");

            Assert.IsType <string>(result);
        }
Ejemplo n.º 2
0
 public StudentTests()
 {
     /* Mock of the DAO */
     DAO = new MockDAO();
 }