| 1 | <?php |
||
| 8 | class ArrayProviderTest extends TestCase |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @expectedException \SlayerBirden\DataFlow\Provider\InvalidDataException |
||
| 12 | * @expectedExceptionMessage Row #(0) is not an array |
||
| 13 | */ |
||
| 14 | public function testWrongArray() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @expectedException \SlayerBirden\DataFlow\Provider\InvalidDataException |
||
| 21 | * @expectedExceptionMessage Row #(1) has different structure than the 1st element |
||
| 22 | */ |
||
| 23 | public function testInconsistentArray() |
||
| 36 | |||
| 37 | public function testGetEstimatedSize() |
||
| 52 | } |
||
| 53 |