| 1 | <?php |
||
| 10 | trait CommonAssertionsTrait |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Asserts to make sure an array is an array of instances of the provided class. |
||
| 15 | * |
||
| 16 | * @param string $expectedClass The fully-qualified classname |
||
| 17 | * @param array $array |
||
| 18 | * @throws PHPUnit_Framework_ExpectationFailedException |
||
| 19 | */ |
||
| 20 | protected function assertArrayOf($expectedClass, array $array) |
||
| 34 | } |
||
| 35 |