public function test_course_toc_chapters()
 {
     $generator = $this->getDataGenerator();
     // Create topics course
     $generator->create_course(['shortname' => 'testcourse', 'format' => 'topics', 'numsections' => 2], ['createsections' => true]);
     $chapters = $this->courseservice->course_toc_chapters('testcourse');
     $this->assertCount(3, $chapters->chapters);
     $this->assertTrue($chapters->chapters[0] instanceof theme_snap\renderables\course_toc_chapter);
 }