ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
SeriesTest.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\Transformation
;
9
10
use
ILIAS\Data\Result\Ok
;
11
use
ILIAS\Refinery\In\Series
;
12
use
ILIAS\Refinery\To\Transformation\IntegerTransformation
;
13
use
ILIAS\Refinery\To\Transformation\StringTransformation
;
14
use
ILIAS\Refinery\ConstraintViolationException
;
15
use
ILIAS\Tests\Refinery\TestCase
;
16
17
require_once(
'./libs/composer/vendor/autoload.php'
);
18
19
class
SeriesTest
extends
TestCase
20
{
21
public
function
testSeriesTransformation
()
22
{
23
$series =
new
Series
(array(
new
StringTransformation
()));
24
25
$result
= $series->transform(
'hello'
);
26
27
$this->assertEquals(
'hello'
,
$result
);
28
}
29
30
public
function
testSeriesApplyTo
()
31
{
32
$series =
new
Series
(array(
33
new
StringTransformation
(),
34
new
StringTransformation
()
35
));
36
37
$result
= $series->applyTo(
new
Ok
(
'hello'
));
38
39
$this->assertEquals(
'hello'
,
$result
->value());
40
}
41
42
public
function
testSeriesTransformationFails
()
43
{
44
$this->expectNotToPerformAssertions();
45
46
$series =
new
Series
(array(
47
new
IntegerTransformation
(),
48
new
StringTransformation
()
49
));
50
51
try
{
52
$result
= $series->transform(42.0);
53
}
catch
(
ConstraintViolationException
$exception) {
54
return
;
55
}
56
57
$this->fail();
58
}
59
60
64
public
function
testSeriesApply
()
65
{
66
$series =
new
Series
(array(
67
new
IntegerTransformation
(),
68
new
StringTransformation
()
69
));
70
71
$result
= $series->applyTo(
new
Ok
(42.0));
72
73
$this->assertTrue(
$result
->isError());
74
}
75
76
public
function
testInvalidTransformationThrowsException
()
77
{
78
$this->expectNotToPerformAssertions();
79
80
try
{
81
$parallel =
new
Series
(
82
array(
83
new
StringTransformation
(),
84
'this is invalid'
85
)
86
);
87
}
catch
(
ConstraintViolationException
$exception) {
88
return
;
89
}
90
91
$this->fail();
92
}
93
}
ILIAS\Tests\Refinery\In\Transformation\SeriesTest\testSeriesApply
testSeriesApply()
Definition:
SeriesTest.php:64
$result
$result
Definition:
CleanUpTest.php:463
ILIAS\Tests\Refinery\In\Transformation\SeriesTest\testSeriesTransformation
testSeriesTransformation()
Definition:
SeriesTest.php:21
TestCase
IntegerTransformation
ILIAS\Tests\Refinery\In\Transformation\SeriesTest\testSeriesTransformationFails
testSeriesTransformationFails()
Definition:
SeriesTest.php:42
ILIAS\Tests\Refinery\In\Transformation
Definition:
ParallelTest.php:8
ILIAS\Refinery\ConstraintViolationException
Definition:
ConstraintViolationException.php:14
ILIAS\Refinery\To\Transformation\IntegerTransformation
Definition:
IntegerTransformation.php:16
ILIAS\Data\Result\Ok
A result encapsulates a value or an error and simplifies the handling of those.
Definition:
Ok.php:13
ILIAS\Tests\Refinery\In\Transformation\SeriesTest\testSeriesApplyTo
testSeriesApplyTo()
Definition:
SeriesTest.php:30
ILIAS\Tests\Refinery\In\Transformation\SeriesTest
Definition:
SeriesTest.php:19
ILIAS\Refinery\In\Series
Definition:
Series.php:16
ILIAS\Tests\Refinery\In\Transformation\SeriesTest\testInvalidTransformationThrowsException
testInvalidTransformationThrowsException()
Definition:
SeriesTest.php:76
ILIAS\Refinery\To\Transformation\StringTransformation
Definition:
StringTransformation.php:16
Ok
Series
StringTransformation
TestCase
ConstraintViolationException
tests
Refinery
In
Transformation
SeriesTest.php
Generated on Sat Apr 5 2025 20:01:41 for ILIAS by
1.8.13 (using
Doxyfile
)