ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilUICoreSetupAgentTest.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21use PHPUnit\Framework\TestCase;
22
28class ilUICoreSetupAgentTest extends TestCase
29{
31
35 protected function setUp(): void
36 {
37 $this->agent = new ilUICoreSetupAgent();
38 }
39
40 public function testAgentsNamedObjectives(): void
41 {
42 $this->assertArrayHasKey(
43 'buildIlCtrlArtifacts',
44 $this->agent->getNamedObjectives()
45 );
46
47 $this->assertArrayHasKey(
48 'updateIlCtrlDatabase',
49 $this->agent->getNamedObjectives()
50 );
51 }
52}
Class UICoreSetupAgentTest.
Class ilUICoreSetupAgent.