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
LessThanConstraintTest.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\Tests\Refinery\Integer\Constraints
;
4
5
/* Copyright (c) 2018 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
6
require_once(
"libs/composer/vendor/autoload.php"
);
7
8
use
ILIAS\Refinery
;
9
use
ILIAS\Data
;
10
use
PHPUnit\Framework\TestCase
;
11
12
class
LessThanConstraintTest
extends
TestCase
13
{
14
18
private
$c
;
19
23
private
$lng
;
24
28
private
$df
;
29
33
private
$less_than
;
34
35
public
function
setUp
() : void
36
{
37
$this->df =
new
Data\Factory
();
38
$this->lng = $this->getMockBuilder(\ilLanguage::class)
39
->disableOriginalConstructor()
40
->getMock();
41
42
$this->less_than = 10;
43
44
$this->c = new \ILIAS\Refinery\Integer\LessThan(
45
$this->less_than,
46
$this->df,
47
$this->lng
48
);
49
}
50
51
public
function
testAccepts
()
52
{
53
$this->assertTrue($this->c->accepts(2));
54
}
55
56
public
function
testNotAccepts
()
57
{
58
$this->assertFalse($this->c->accepts(10));
59
}
60
61
public
function
testCheckSucceed
()
62
{
63
$this->c->check(2);
64
$this->assertTrue(
true
);
// does not throw
65
}
66
67
public
function
testCheckFails
()
68
{
69
$this->expectException(\UnexpectedValueException::class);
70
$this->c->check(11);
71
}
72
73
public
function
testNoProblemWith
()
74
{
75
$this->assertNull($this->c->problemWith(1));
76
}
77
78
public
function
testProblemWith
()
79
{
80
$this->lng
81
->expects($this->once())
82
->method(
"txt"
)
83
->with(
"not_less_than"
)
84
->willReturn(
"-%s-%s-"
);
85
86
$this->assertEquals(
"-12-{$this->less_than}-"
, $this->c->problemWith(
"12"
));
87
}
88
89
public
function
testRestrictOk
()
90
{
91
$ok
= $this->df->ok(1);
92
93
$res
= $this->c->applyTo(
$ok
);
94
$this->assertTrue(
$res
->isOk());
95
}
96
97
public
function
testRestrictNotOk
()
98
{
99
$not_ok = $this->df->ok(1234);
100
101
$res
= $this->c->applyTo($not_ok);
102
$this->assertFalse(
$res
->isOk());
103
}
104
105
public
function
testRestrictError
()
106
{
107
$error = $this->df->error(
"error"
);
108
109
$res
= $this->c->applyTo($error);
110
$this->assertSame($error,
$res
);
111
}
112
113
public
function
testWithProblemBuilder
()
114
{
115
$new_c = $this->c->withProblemBuilder(
function
() {
116
return
"This was a fault"
;
117
});
118
$this->assertEquals(
"This was a fault"
, $new_c->problemWith(13));
119
}
120
}
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\testWithProblemBuilder
testWithProblemBuilder()
Definition:
LessThanConstraintTest.php:113
ILIAS\Refinery
Definition:
ByTrying.php:5
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\testRestrictError
testRestrictError()
Definition:
LessThanConstraintTest.php:105
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\testCheckFails
testCheckFails()
Definition:
LessThanConstraintTest.php:67
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\testRestrictOk
testRestrictOk()
Definition:
LessThanConstraintTest.php:89
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\testNoProblemWith
testNoProblemWith()
Definition:
LessThanConstraintTest.php:73
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\setUp
setUp()
Definition:
LessThanConstraintTest.php:35
ILIAS\Tests\Refinery\Integer\Constraints
Definition:
GreaterThanConstraintTest.php:5
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest
Definition:
LessThanConstraintTest.php:12
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\$less_than
$less_than
Definition:
LessThanConstraintTest.php:33
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\$df
$df
Definition:
LessThanConstraintTest.php:28
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\testAccepts
testAccepts()
Definition:
LessThanConstraintTest.php:51
ILIAS\Data\Factory
Builds data types.
Definition:
Factory.php:19
$ok
$ok
Definition:
UtfNormalTest.php:80
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\$lng
$lng
Definition:
LessThanConstraintTest.php:23
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\testRestrictNotOk
testRestrictNotOk()
Definition:
LessThanConstraintTest.php:97
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\$c
$c
Definition:
LessThanConstraintTest.php:18
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\testCheckSucceed
testCheckSucceed()
Definition:
LessThanConstraintTest.php:61
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\testProblemWith
testProblemWith()
Definition:
LessThanConstraintTest.php:78
ILIAS\Tests\Refinery\Integer\Constraints\LessThanConstraintTest\testNotAccepts
testNotAccepts()
Definition:
LessThanConstraintTest.php:56
TestCase
ILIAS\Data
Definition:
Alphanumeric.php:10
tests
Refinery
Integer
Constraints
LessThanConstraintTest.php
Generated on Thu Apr 3 2025 21:01:38 for ILIAS by
1.8.13 (using
Doxyfile
)