Example #1
0
 public void GetInvalidStudentID()
 {
     School.Lib.School school = new School.Lib.School();
     school.GetStudentByUID(10000);
 }
Example #2
0
 public void AddStudent()
 {
     School.Lib.School school = new School.Lib.School();
     school.AddStudent("lala", 10000);
     Assert.AreEqual("lala", school.GetStudentByUID(10000).Name);
 }