1 | <?php |
||
8 | class ArrayRandValueTest extends TestCase |
||
9 | { |
||
10 | protected $testArray = [ |
||
11 | 'one' => 'a', |
||
12 | 'two' => 'b', |
||
13 | 'three' => 'c', |
||
14 | ]; |
||
15 | |||
16 | /** |
||
17 | * @test |
||
18 | */ |
||
19 | public function it_can_handle_an_empty_array() |
||
23 | |||
24 | /** |
||
25 | * @test |
||
26 | */ |
||
27 | public function it_can_get_a_random_value() |
||
34 | |||
35 | /** |
||
36 | * @test |
||
37 | */ |
||
38 | public function it_can_get_multiple_random_values() |
||
49 | } |
||
50 |