ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilQuestionCumulatedStatisticsTableGUITest.php
Go to the documentation of this file.
1<?php
2
20
31{
32 protected $backupGlobals = false;
33
35
36 protected function setUp(): void
37 {
38 parent::setUp();
39
40 $this->object = new ilQuestionCumulatedStatisticsTableGUI(
41 (object) [],
42 '',
43 '',
44 $this->createMock(assQuestion::class),
45 $this->createMock(GeneralQuestionPropertiesRepository::class)
46 );
47 }
48
49 public function testConstruct(): void
50 {
51 $this->assertInstanceOf(ilQuestionCumulatedStatisticsTableGUI::class, $this->object);
52 }
53}
Class assBaseTestCase.