ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
GroupTest.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
namespace
ILIAS\Tests\Refinery\Container
;
5
6
use
ILIAS\Data\Factory
;
7
use
ILIAS\Refinery\Container\Group
;
8
use
ILIAS\Refinery\Container\AddLabels
;
9
use
ILIAS\Tests\Refinery\TestCase
;
10
11
require_once(
'./libs/composer/vendor/autoload.php'
);
12
require_once(
'./tests/Refinery/TestCase.php'
);
13
14
class
GroupTest
extends
TestCase
15
{
19
private
$group
;
20
24
private
$dataFactory
;
25
29
private
$language
;
30
31
public
function
setUp
() : void
32
{
33
$this->dataFactory =
new
Factory
();
34
$this->
language
= $this->getMockBuilder(
'\ilLanguage'
)
35
->disableOriginalConstructor()
36
->getMock();
37
38
$this->group =
new
Group
($this->dataFactory);
39
}
40
41
public
function
testCustomConstraint
()
42
{
43
$instance = $this->group->addLabels(array(
'hello'
,
'world'
));
44
$this->assertInstanceOf(AddLabels::class, $instance);
45
}
46
}
ILIAS\Tests\Refinery\Container
Definition:
GroupTest.php:4
ILIAS\Tests\Refinery\Container\GroupTest\$group
$group
Definition:
GroupTest.php:19
TestCase
ILIAS\Tests\Refinery\Container\GroupTest\testCustomConstraint
testCustomConstraint()
Definition:
GroupTest.php:41
ILIAS\Refinery\Container\Group
Definition:
Group.php:11
ILIAS\Tests\Refinery\Container\GroupTest\$language
$language
Definition:
GroupTest.php:29
Factory
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:19
ILIAS\Tests\Refinery\Container\GroupTest\$dataFactory
$dataFactory
Definition:
GroupTest.php:24
ILIAS\Tests\Refinery\Container\GroupTest
Definition:
GroupTest.php:14
Group
AddLabels
ILIAS\Tests\Refinery\Container\GroupTest\setUp
setUp()
Definition:
GroupTest.php:31
language
language()
Definition:
language.php:2
TestCase
tests
Refinery
Container
GroupTest.php
Generated on Sat Apr 5 2025 21:01:48 for ILIAS by
1.8.13 (using
Doxyfile
)