ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ 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
}
ilUICoreSetupAgentTest
Class UICoreSetupAgentTest.
Definition:
ilUICoreSetupAgentTest.php:29
ilUICoreSetupAgentTest\setUp
setUp()
@inheritDoc
Definition:
ilUICoreSetupAgentTest.php:35
ilUICoreSetupAgentTest\$agent
ilUICoreSetupAgent $agent
Definition:
ilUICoreSetupAgentTest.php:30
ilUICoreSetupAgentTest\testAgentsNamedObjectives
testAgentsNamedObjectives()
Definition:
ilUICoreSetupAgentTest.php:40
ilUICoreSetupAgent
Class ilUICoreSetupAgent.
Definition:
class.ilUICoreSetupAgent.php:36
components
ILIAS
UICore
tests
Setup
ilUICoreSetupAgentTest.php
Generated on Sat Oct 18 2025 23:04:57 for ILIAS by
1.9.4 (using
Doxyfile
)