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
BasicGroupTest.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8
namespace
ILIAS\Tests\Refinery\In
;
9
10
use
ILIAS\Refinery\In\Parallel
;
11
use
ILIAS\Refinery\In\Series
;
12
use
ILIAS\Refinery\In\Group
;
13
use
ILIAS\Refinery\To\Transformation\IntegerTransformation
;
14
use
ILIAS\Refinery\To\Transformation\StringTransformation
;
15
use
ILIAS\Tests\Refinery\TestCase
;
16
17
require_once(
'./libs/composer/vendor/autoload.php'
);
18
19
class
BasicGroupTest
extends
TestCase
20
{
24
private
$group
;
25
26
public
function
setUp
() : void
27
{
28
$this->group =
new
Group
();
29
}
30
31
public
function
testParallelInstanceCreated
()
32
{
33
$transformation = $this->group->parallel(array(
new
StringTransformation
(),
new
IntegerTransformation
()));
34
$this->assertInstanceOf(Parallel::class, $transformation);
35
}
36
37
public
function
testSeriesInstanceCreated
()
38
{
39
$transformation = $this->group->series(array(
new
StringTransformation
(),
new
IntegerTransformation
()));
40
$this->assertInstanceOf(Series::class, $transformation);
41
}
42
}
ILIAS\Tests\Refinery\In\BasicGroupTest\setUp
setUp()
Definition:
BasicGroupTest.php:26
ILIAS\Tests\Refinery\In\BasicGroupTest\$group
$group
Definition:
BasicGroupTest.php:24
TestCase
IntegerTransformation
ILIAS\Refinery\In\Group
Definition:
Group.php:14
ILIAS\Tests\Refinery\In\BasicGroupTest
Definition:
BasicGroupTest.php:19
ILIAS\Refinery\To\Transformation\IntegerTransformation
Definition:
IntegerTransformation.php:17
Group
ILIAS\Tests\Refinery\In
Definition:
BasicGroupTest.php:8
ILIAS\Refinery\To\Transformation\StringTransformation
Definition:
StringTransformation.php:17
ILIAS\Tests\Refinery\In\BasicGroupTest\testParallelInstanceCreated
testParallelInstanceCreated()
Definition:
BasicGroupTest.php:31
ILIAS\Tests\Refinery\In\BasicGroupTest\testSeriesInstanceCreated
testSeriesInstanceCreated()
Definition:
BasicGroupTest.php:37
Series
StringTransformation
Parallel
TestCase
tests
Refinery
In
BasicGroupTest.php
Generated on Thu Apr 3 2025 21:01:38 for ILIAS by
1.8.13 (using
Doxyfile
)