ILIAS  release_8 Revision v8.23
ilUICoreSetupAgentTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 1998-2020 ILIAS open source, Extended GPL, see docs/LICENSE */
6 
8 
14 class ilUICoreSetupAgentTest extends TestCase
15 {
17 
21  protected function setUp(): void
22  {
23  $this->agent = new ilUICoreSetupAgent();
24  }
25 
26  public function testAgentsNamedObjectives(): void
27  {
28  $this->assertArrayHasKey(
29  'buildIlCtrlArtifacts',
30  $this->agent->getNamedObjectives()
31  );
32 
33  $this->assertArrayHasKey(
34  'updateIlCtrlDatabase',
35  $this->agent->getNamedObjectives()
36  );
37  }
38 }
Class UICoreSetupAgentTest.