ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilAddAnswerFormBuilderTest.php
Go to the documentation of this file.
1<?php
2
19use ILIAS\UI\Factory as UIFactory;
20use ILIAS\Refinery\Factory as RefineryFactory;
21
32{
33 protected $backupGlobals = false;
34
36
37 protected function setUp(): void
38 {
39 parent::setUp();
40
41 $this->object = new ilAddAnswerFormBuilder(
42 $this->createMock(UIFactory::class),
43 $this->createMock(RefineryFactory::class),
44 $this->createMock(ilLanguage::class),
45 $this->createMock(ilCtrl::class)
46 );
47 }
48
49 public function testConstruct(): void
50 {
51 $this->assertInstanceOf(ilAddAnswerFormBuilder::class, $this->object);
52 }
53}
Builds a Color from either hex- or rgb values.
Definition: Factory.php:31
Builds data types.
Definition: Factory.php:36
Class assBaseTestCase.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...