ILIAS  trunk Revision v11.0_alpha-1861-g09f3d197f78
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
FactoryTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 
31 {
32  public function testConstruct(): void
33  {
34  $ilTestResultsPresentationFactory = new Factory(
35  $this->createMock(UIFactory::class),
36  $this->createMock(UIRenderer::class),
37  $this->createMock(Refinery::class),
38  $this->createMock(DataFactory::class),
39  $this->createMock(HTTPService::class),
40  $this->createMock(\ilLanguage::class)
41  );
42  $this->assertInstanceOf(Factory::class, $ilTestResultsPresentationFactory);
43  }
44 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilTestBaseClass.