[PR] Implement tests for Config, Database and ExamResultGenerator #3

Merged
wessel merged 3 commits from 1-grade-generator/exam_result_generator into 1-grade-generator/master 2025-10-02 13:33:33 +02:00
Showing only changes of commit 057968d5ac - Show all commits

View File

@@ -24,6 +24,10 @@ struct StudentCourse {
|| (student_name == other.student_name
&& course_name < other.course_name);
}
bool operator!=(const StudentCourse& other) const {
return !(*this == other);
}
};
typedef std::map<StudentCourse, std::vector<int>> StudentCourseResultMap;