本文整理汇总了C#中School.Course.JoinCourse方法的典型用法代码示例。如果您正苦于以下问题:C# Course.JoinCourse方法的具体用法?C# Course.JoinCourse怎么用?C# Course.JoinCourse使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类School.Course
的用法示例。
在下文中一共展示了Course.JoinCourse方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestJoinCourseSuccessfully
public void TestJoinCourseSuccessfully()
{
Course course = new Course();
Student student = new Student("Valia", 34567);
string result = course.JoinCourse(student);
Assert.AreEqual("Done!", result);
}
示例2: TestCourseJoinCourse
public void TestCourseJoinCourse()
{
Course course = new Course("Software Engineering");
Student student = new Student("Nikolay Kostadinov", 10000);
course.JoinCourse(student);
bool isStudentInCourse = CheckForStudent(student, course);
Assert.AreEqual(isStudentInCourse, true, "Invalid join");
}
示例3: TestJoinCourseMaximumStudentsSuccessfully
public void TestJoinCourseMaximumStudentsSuccessfully()
{
Course course = new Course();
int maxStudents = 29;
for (int i = 0; i < maxStudents; i++)
{
course.JoinCourse(new Student("student"+i, 10002+i));
}
}
示例4: TestJoinCourse31Students
public void TestJoinCourse31Students()
{
Course course = new Course();
int maxStudents = 30;
for (int i = 0; i < maxStudents; i++)
{
course.JoinCourse(new Student("student" + i, 20002 + i));
}
}
示例5: TestJoinCourse15StudentsSuccessfully
public void TestJoinCourse15StudentsSuccessfully()
{
Course course = new Course();
int joinStudents = 14;
for (int i = 0; i < joinStudents; i++)
{
course.JoinCourse(new Student("student" + i, 30002 + i));
}
}
示例6: TestAddingMoreThan30Students
public void TestAddingMoreThan30Students()
{
School.ListOfAllStudents.Clear();
var course = new Course("hah");
for (int i = 0; i < 32; i++)
{
course.JoinCourse(new Student("Lala", "Lala", 10001 + i));
}
}
示例7: 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);
}
示例8: Clone
/// <summary>
/// Deep copy of Course object
/// </summary>
/// <returns>New Course object</returns>
public object Clone()
{
Course cloneCourse = new Course(this.Name);
foreach (var student in this.students)
{
Student st = (Student)student.Value.Clone();
cloneCourse.JoinCourse(st);
}
return cloneCourse;
}
示例9: TestListSuccessfull
public void TestListSuccessfull()
{
Course course = new Course();
int joinStudents = 14;
for (int i = 0; i < joinStudents; i++)
{
course.JoinCourse(new Student("student" + i, 38002 + i));
}
List<Student> students = new List<Student>(course.StudentsInCourse);
}
示例10: TestAddingStudents
public void TestAddingStudents()
{
School.ListOfAllStudents.Clear();
var course = new Course("Hard Rock Aleluya");
for (int i = 0; i < 5; i++)
{
course.JoinCourse(new Student("Hamburg", "Ham", 10001 + i));
}
Assert.AreEqual(5, course.ListOfStudents.Count);
}
示例11: TestCourseJoinCourseMax
public void TestCourseJoinCourseMax()
{
const int StartStudentsID = 10000;
const int MaxCourseCapacity = 30;
const int LastStudentID = StartStudentsID + MaxCourseCapacity + 1;
Course course = new Course("Software Engineering");
for (uint id = StartStudentsID; id < LastStudentID; id++)
{
course.JoinCourse(new Student("Nikolay Kostadinov", id));
}
}
示例12: Main
/// <summary>
/// Main Method
/// </summary>
public static void Main()
{
School tmt = new School("TMT");
Course electricalEngeneering = new Course("Electrical Enceneering");
for (int i = 0; i < 10; i++)
{
electricalEngeneering.JoinCourse(new Student(string.Format("Student{0}", i), tmt.GetStugentId));
}
tmt.AddCourse(electricalEngeneering);
ConsolePrinter(tmt.ToString());
foreach (var course in tmt.ViewCourses())
{
ConsolePrinter(course.ToString(), 3);
foreach (var student in course.ViewStudents())
{
ConsolePrinter(student.Value.ToString(), 6);
}
}
}
示例13: 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);
}
示例14: 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");
}
示例15: TestCourseJoinCourseDublicatedStudent
public void TestCourseJoinCourseDublicatedStudent()
{
Course course = new Course("Software Engineering");
course.JoinCourse(new Student("Nikolay Kostadinov", 10000));
course.JoinCourse(new Student("Nikolay Kostadinov", 10000));
}