ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
ilUICoreSetupAgentTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
PHPUnit\Framework\TestCase
;
22
28
class
ilUICoreSetupAgentTest
extends
TestCase
29
{
30
private
ilUICoreSetupAgent
$agent
;
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
}
ilUICoreSetupAgent
ilUICoreSetupAgentTest\testAgentsNamedObjectives
testAgentsNamedObjectives()
Definition:
ilUICoreSetupAgentTest.php:40
ilUICoreSetupAgentTest\setUp
setUp()
Definition:
ilUICoreSetupAgentTest.php:35
ilUICoreSetupAgentTest\$agent
ilUICoreSetupAgent $agent
Definition:
ilUICoreSetupAgentTest.php:30
ilUICoreSetupAgentTest
Class UICoreSetupAgentTest.
Definition:
ilUICoreSetupAgentTest.php:28
TestCase
TestCase
components
ILIAS
UICore
tests
Setup
ilUICoreSetupAgentTest.php
Generated on Wed Sep 3 2025 23:04:24 for ILIAS by
1.8.13 (using
Doxyfile
)