ILIAS
release_8 Revision v8.23
◀ 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
}
ilUICoreSetupAgent
ilUICoreSetupAgentTest\testAgentsNamedObjectives
testAgentsNamedObjectives()
Definition:
ilUICoreSetupAgentTest.php:26
ilUICoreSetupAgentTest\setUp
setUp()
Definition:
ilUICoreSetupAgentTest.php:21
ilUICoreSetupAgentTest\$agent
ilUICoreSetupAgent $agent
Definition:
ilUICoreSetupAgentTest.php:16
ilUICoreSetupAgentTest
Class UICoreSetupAgentTest.
Definition:
ilUICoreSetupAgentTest.php:14
TestCase
Services
UICore
test
Setup
ilUICoreSetupAgentTest.php
Generated on Wed Sep 3 2025 22:02:46 for ILIAS by
1.8.13 (using
Doxyfile
)