1 | <?php |
||
19 | abstract class HashArrayTest extends \PHPUnit_Framework_TestCase { |
||
20 | |||
21 | public abstract function constructorProvider(); |
||
22 | |||
23 | /** |
||
24 | * Returns the name of the concrete class being tested. |
||
25 | * |
||
26 | * @since 0.4 |
||
27 | * |
||
28 | * @return string |
||
29 | */ |
||
30 | abstract public function getInstanceClass(); |
||
31 | |||
32 | public function instanceProvider() { |
||
43 | |||
44 | /** |
||
45 | * @dataProvider instanceProvider |
||
46 | * @param HashArray $array |
||
47 | */ |
||
48 | public function testEquals( HashArray $array ) { |
||
52 | |||
53 | /** |
||
54 | * @param array $elements |
||
55 | * |
||
56 | * @return array[] |
||
57 | */ |
||
58 | protected function arrayWrap( array $elements ) { |
||
66 | |||
67 | } |
||
68 |