本文整理汇总了C#中School.Course.LeaveCourse方法的典型用法代码示例。如果您正苦于以下问题:C# Course.LeaveCourse方法的具体用法?C# Course.LeaveCourse怎么用?C# Course.LeaveCourse使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类School.Course
的用法示例。
在下文中一共展示了Course.LeaveCourse方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestRemovingStudents
public void TestRemovingStudents()
{
School.ListOfAllStudents.Clear();
var course = new Course("ALALLALALL");
var student = new Student("LALA", "LALA", 10001);
course.JoinCourse(student);
course.LeaveCourse(student);
Assert.AreEqual(0, course.ListOfStudents.Count);
}
示例2: TestCourseLeaveCourse
public void TestCourseLeaveCourse()
{
const int StartStudentsID = 10000;
const int MaxCourseCapacity = 30;
const int LastStudentID = StartStudentsID + MaxCourseCapacity;
Course course = new Course("Software Engineering");
for (uint id = StartStudentsID; id < LastStudentID; id++)
{
course.JoinCourse(new Student("Nikolay Kostadinov", id));
}
course.LeaveCourse(new Student("Nikolay Kostadinov", 10029));
bool isStudentInCourse = CheckForStudent(new Student("Nikolay Kostadinov", 10029),course);
Assert.AreEqual(isStudentInCourse, false, "Leave doesn't work correct");
}
示例3: TestCourseFullClone
public void TestCourseFullClone()
{
const int StartStudentsID = 10000;
const int MaxCourseCapacity = 30;
const int LastStudentID = StartStudentsID + MaxCourseCapacity;
Course course = new Course("Software Engineering");
for (uint id = StartStudentsID; id < LastStudentID; id++)
{
course.JoinCourse(new Student("Nikolay Kostadinov", id));
}
course.LeaveCourse(new Student("Nikolay Kostadinov", 10029));
Course cloneCourse = (Course)course.Clone();
bool isEqual = CompareStudents(course, cloneCourse) && (course.Name == cloneCourse.Name);
Assert.AreEqual(isEqual, true);
}
示例4: TestCourseLeaveCourseNonPopulated
public void TestCourseLeaveCourseNonPopulated()
{
Course course = new Course("Software Engineering");
course.LeaveCourse(new Student("Nikolay Kostadinov", 10029));
}
示例5: TestCourseLeaveCourseZero
public void TestCourseLeaveCourseZero()
{
Course course = new Course("Software Engineering");
course.LeaveCourse(null);
}
示例6: TestCourseLeaveCourseNonExistStudent
public void TestCourseLeaveCourseNonExistStudent()
{
Course course = new Course("Software Engineering");
course.JoinCourse(new Student("Nikolay Kostadinov", 10000));
course.LeaveCourse(new Student("Nikolay Kostadinov", 10029));
}