1 | <?php |
||
20 | class ArrayUtilsTest extends PHPUnit_Framework_TestCase |
||
21 | { |
||
22 | /** |
||
23 | * @covers ::toArray |
||
24 | */ |
||
25 | public function testToArrayWithNull() |
||
29 | |||
30 | /** |
||
31 | * @covers ::toArray |
||
32 | */ |
||
33 | public function testToArrayWithArray() |
||
37 | |||
38 | /** |
||
39 | * @covers ::toArray |
||
40 | */ |
||
41 | public function testToArrayWithIterator() |
||
45 | |||
46 | /** |
||
47 | * @covers ::toArray |
||
48 | */ |
||
49 | public function testToArrayWithInvalidValue() |
||
54 | } |
||
55 |