1 | <?php |
||
8 | class ValuesInArrayTest extends TestCase |
||
9 | { |
||
10 | /** |
||
11 | * @test |
||
12 | */ |
||
13 | public function it_returns_true_when_all_needles_are_present_in_haystack() |
||
17 | |||
18 | /** |
||
19 | * @test |
||
20 | */ |
||
21 | public function it_returns_false_when_not_all_needles_are_present_in_haystack() |
||
25 | |||
26 | /** |
||
27 | * @test |
||
28 | */ |
||
29 | public function it_returns_true_for_empty_arrays() |
||
33 | |||
34 | /** |
||
35 | * @test |
||
36 | */ |
||
37 | public function it_returns_true_for_empty_needles() |
||
41 | |||
42 | /** |
||
43 | * @test |
||
44 | */ |
||
45 | public function it_returns_false_for_searching_for_needles_in_an_empty_haystack() |
||
49 | |||
50 | /** |
||
51 | * @test |
||
52 | */ |
||
53 | public function it_returns_true_when_needle_is_present_in_haystack() |
||
58 | |||
59 | /** |
||
60 | * @test |
||
61 | */ |
||
62 | public function it_returns_false_when_needle_is_not_present_in_haystack() |
||
67 | } |
||
68 |