public void TestSchool_AddCourseArgument() { School testSchool = new School(schoolName); Course javascript = new Course("Javascript","Nakov"); testSchool.AddCourse(javascript); testSchool.AddCourse(javascript); }
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"); }
public void TestSchool_RemoveCourseNullStudent() { School testSchoolNull = new School(schoolName); testSchoolNull.RemoveCourse(null); }
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); }
public void TestSchoolConstructor_WhitespaceThrowException() { School whitespaceSchool = new School(" "); }
public void TestSchoolConstructor_NullThrowException() { School nullSchool = new School(null); }
public void TestSchoolConstructor_Name() { School testSchool = new School(schoolName); Assert.AreEqual(schoolName, testSchool.Name, "School name is not set in a correct way"); }
public void TestSchoolConstructor_BlankThrowException() { School blankSchool = new School(string.Empty); }