1 | <?php |
||
15 | abstract class HashArrayTest extends \PHPUnit_Framework_TestCase { |
||
16 | |||
17 | public abstract function constructorProvider(); |
||
18 | |||
19 | /** |
||
20 | * Returns the name of the concrete class being tested. |
||
21 | * |
||
22 | * @since 0.4 |
||
23 | * |
||
24 | * @return string |
||
25 | */ |
||
26 | abstract public function getInstanceClass(); |
||
27 | |||
28 | public function instanceProvider() { |
||
39 | |||
40 | /** |
||
41 | * @param array $elements |
||
42 | * |
||
43 | * @return array[] |
||
44 | */ |
||
45 | protected function arrayWrap( array $elements ) { |
||
53 | |||
54 | } |
||
55 |