当前位置: 首页>>代码示例>>C#>>正文


C# Course.LeaveCourse方法代码示例

本文整理汇总了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);
        }
开发者ID:dirk-dagger-667,项目名称:telerik-c--QoC-lectures,代码行数:11,代码来源:SchoolCourseTests.cs

示例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");
        }
开发者ID:NikolayKostadinov,项目名称:Homeworks,代码行数:18,代码来源:CourseTest.cs

示例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);
        }
开发者ID:NikolayKostadinov,项目名称:Homeworks,代码行数:22,代码来源:CourseTest.cs

示例4: TestCourseLeaveCourseNonPopulated

 public void TestCourseLeaveCourseNonPopulated()
 {
     Course course = new Course("Software Engineering");
     course.LeaveCourse(new Student("Nikolay Kostadinov", 10029));
 }
开发者ID:NikolayKostadinov,项目名称:Homeworks,代码行数:5,代码来源:CourseTest.cs

示例5: TestCourseLeaveCourseZero

 public void TestCourseLeaveCourseZero()
 {
     Course course = new Course("Software Engineering");
     course.LeaveCourse(null);
 }
开发者ID:NikolayKostadinov,项目名称:Homeworks,代码行数:5,代码来源:CourseTest.cs

示例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));
 }
开发者ID:NikolayKostadinov,项目名称:Homeworks,代码行数:6,代码来源:CourseTest.cs


注:本文中的School.Course.LeaveCourse方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。