-
Notifications
You must be signed in to change notification settings - Fork 32
/
MapTest.php
74 lines (68 loc) · 1.99 KB
/
MapTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
use Eris\Generators;
class MapTest extends \PHPUnit\Framework\TestCase
{
use Eris\TestTrait;
public function testApplyingAFunctionToGeneratedValues()
{
$this->forAll(
Generators::vector(
3,
Generators::map(
function ($n) {
return $n * 2;
},
Generators::nat()
)
)
)
->then(function ($tripleOfEvenNumbers) {
foreach ($tripleOfEvenNumbers as $number) {
$this->assertTrue(
$number % 2 == 0,
"The element of the vector $number is not even"
);
}
});
}
public function testShrinkingJustMappedValues()
{
$this->forAll(
Generators::map(
function ($n) {
return $n * 2;
},
Generators::nat()
)
)
->then(function ($evenNumber) {
$this->assertLessThanOrEqual(
100,
$evenNumber,
"The number is not less than 100"
);
});
}
public function testShrinkingMappedValuesInsideOtherGenerators()
{
$this->forAll(
Generators::vector(
3,
Generators::map(
function ($n) {
return $n * 2;
},
Generators::nat()
)
)
)
->then(function ($tripleOfEvenNumbers) {
$this->assertLessThanOrEqual(
100,
array_sum($tripleOfEvenNumbers),
"The triple sum " . var_export($tripleOfEvenNumbers, true) . " is not less than 100"
);
});
}
// TODO: multiple generators means multiple values passed to map
}