csv = new Csv(); } protected function _compareWithExpected($expected) { $this->csv->auto(__DIR__ . '/../../examples/_books.csv'); $actual = array_map(function ($row) { return $row['title']; }, $this->csv->data); $this->assertEquals($expected, array_values($actual)); } }