示例#1
0
        public void instructorLogoff()
        {
            instructor        instructor     = new instructor(id);
            teachingStaffMenu instructorMenu = new teachingStaffMenu(instructor);

            instructorMenu.Close();
            Assert.IsNotNull(instructorMenu);
        }
示例#2
0
        public void professorLogoff()
        {
            professor         professor     = new professor(id);
            teachingStaffMenu professorMenu = new teachingStaffMenu(professor);

            professorMenu.Close();
            Assert.IsNotNull(professorMenu);
        }