ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilUICoreSetupAgentTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
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.