Esempio n. 1
0
 public void TestSchool_AddCourseArgument()
 {
     School testSchool = new School(schoolName);
     Course javascript = new Course("Javascript","Nakov");
     testSchool.AddCourse(javascript);
     testSchool.AddCourse(javascript);
 }
Esempio n. 2
0
 public void TestSchool_AddCourse()
 {
     School testSchool = new School(schoolName);
     Course javascript = new Course("Javascript", "Nakov");
     testSchool.AddCourse(javascript);
     Assert.IsTrue(testSchool.Courses.Contains(javascript), "Course is not in the school");
 }
Esempio n. 3
0
 public void TestSchool_RemoveCourseNullStudent()
 {
     School testSchoolNull = new School(schoolName);
     testSchoolNull.RemoveCourse(null);
 }
Esempio n. 4
0
 public void TestSchool_RemoveCourseArgument()
 {
     School testSchool = new School(schoolName);
     Course javascript = new Course("Javascript", "Nakov");
     Course oop = new Course("OOP", "Nakov");
     testSchool.AddCourse(javascript);
     testSchool.RemoveCourse(oop);
 }
Esempio n. 5
0
 public void TestSchoolConstructor_WhitespaceThrowException()
 {
     School whitespaceSchool = new School("   ");
 }
Esempio n. 6
0
 public void TestSchoolConstructor_NullThrowException()
 {
     School nullSchool = new School(null);
 }
Esempio n. 7
0
 public void TestSchoolConstructor_Name()
 {
     School testSchool = new School(schoolName);
     Assert.AreEqual(schoolName, testSchool.Name, "School name is not set in a correct way");
 }
Esempio n. 8
0
 public void TestSchoolConstructor_BlankThrowException()
 {
     School blankSchool = new School(string.Empty);
 }