test('areLessonsSameClass should identify lessons with different ClassNo as different class', () => {
  const otherLesson: Lesson = lessonWithDifferentProperty(mockLesson, 'classNo');
  expect(areLessonsSameClass(mockLesson, otherLesson)).toBe(false);
});