ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
QuestionTableTest.php
Go to the documentation of this file.
1 <?php
2 
26 
37 {
38  protected $backupGlobals = false;
39 
41 
42  protected function setUp(): void
43  {
44  parent::setUp();
45 
46  $this->object = new QuestionTable(
47  $this->createMock(UIFactory::class),
48  $this->createMock(UIRenderer::class),
49  $this->createMock(DataFactory::class),
50  $this->createMock(ILIAS\Refinery\Factory::class),
51  $this->createMock(URLBuilder::class),
52  $this->createMock(URLBuilderToken::class),
53  $this->createMock(URLBuilderToken::class),
54  $this->createMock(ilDBInterface::class),
55  $this->createMock(ilLanguage::class),
56  $this->createMock(ilComponentRepository::class),
57  $this->createMock(ilRbacSystem::class),
58  $this->createMock(ilObjUser::class),
59  $this->createMock(TaxonomyService::class),
60  $this->createMock(ILIAS\Notes\Service::class),
61  0,
62  0
63  );
64  }
65 
66  public function testConstruct(): void
67  {
68  $this->assertInstanceOf(QuestionTable::class, $this->object);
69  }
70 }
QuestionTable $object
Interface Observer Contains several chained tasks and infos about them.
Class assBaseTestCase.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...