ILIAS
release_8 Revision v8.24
◀ ilDoc Overview
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
7
use PHPUnit\Framework\TestCase;
8
14
class
ilUICoreSetupAgentTest
extends
TestCase
15
{
16
private
ilUICoreSetupAgent
$agent
;
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
}
ilUICoreSetupAgentTest
Class UICoreSetupAgentTest.
Definition:
ilUICoreSetupAgentTest.php:15
ilUICoreSetupAgentTest\setUp
setUp()
@inheritDoc
Definition:
ilUICoreSetupAgentTest.php:21
ilUICoreSetupAgentTest\$agent
ilUICoreSetupAgent $agent
Definition:
ilUICoreSetupAgentTest.php:16
ilUICoreSetupAgentTest\testAgentsNamedObjectives
testAgentsNamedObjectives()
Definition:
ilUICoreSetupAgentTest.php:26
ilUICoreSetupAgent
Class ilUICoreSetupAgent.
Definition:
class.ilUICoreSetupAgent.php:22
Services
UICore
test
Setup
ilUICoreSetupAgentTest.php
Generated on Mon Nov 3 2025 22:02:04 for ILIAS by
1.9.4 (using
Doxyfile
)