ILIAS  trunk Revision v11.0_alpha-1861-g09f3d197f78
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
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.