| 1 | <?php |
||
| 8 | class CsvTest extends \PHPUnit_Framework_TestCase |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var vfsStreamDirectory |
||
| 12 | */ |
||
| 13 | protected $root; |
||
| 14 | |||
| 15 | public function setUp() |
||
| 19 | |||
| 20 | public function testRead() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @expectedException \Maketok\DataMigration\Storage\Exception\ParsingException |
||
| 42 | * @expectedExceptionMessage Row contains wrong number of columns compared to header |
||
| 43 | */ |
||
| 44 | public function testWrongRead() |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @depends testRead |
||
| 58 | */ |
||
| 59 | public function testReset() |
||
| 78 | |||
| 79 | public function testWrite() |
||
| 101 | } |
||
| 102 |