Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class IntersectionTest extends TestCase |
||
13 | { |
||
14 | public function getDataProvider() |
||
15 | { |
||
16 | return [ |
||
17 | [true, true, true], |
||
18 | [true, false, false], |
||
19 | [false, true, false], |
||
20 | [false, false, false], |
||
21 | ]; |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @test |
||
26 | * @dataProvider getDataProvider |
||
27 | */ |
||
28 | public function includes_GivenDatesFromDataProvider_ShouldMatchExpectedValue($first, $second, $expected) |
||
45 | } |
||
46 | } |
||
47 |