Files
faveo/vendor/maatwebsite/excel/tests/Files/CsvExcelFileTest.php
Manish Verma 76e85db070 update 1.0.8.0
Commits for version update
2016-10-17 12:02:27 +05:30

24 lines
561 B
PHP

<?php
include_once 'classes/CsvTestImport.php';
class CsvExcelFileTest extends TestCase {
public function testInit()
{
$importer = app('CsvTestImport');
$this->assertInstanceOf('Maatwebsite\Excel\Files\ExcelFile', $importer);
}
public function testGetResultsDirectlyWithCustomDelimiterSetAsProperty()
{
$importer = app('TestImport');
$results = $importer->get();
$this->assertInstanceOf('Maatwebsite\Excel\Collections\RowCollection', $results);
$this->assertCount(5, $results);
}
}