ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ResultsExportExcelTest.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
27{
28 public function testConstruct(): void
29 {
30 $excel_export = new ResultsExportExcel(
31 $this->createMock(\ilLanguage::class),
32 $this->createMock(\ilObjUser::class),
33 $this->getTestObjMock(),
34 $this->createMock(GeneralQuestionPropertiesRepository::class),
35 );
36 $this->assertInstanceOf(ResultsExportExcel::class, $excel_export);
37 }
38}
Class ilTestBaseClass.