Skip to content

Commit

Permalink
Merge pull request #22 from Julian-Forrer/more-tests
Browse files Browse the repository at this point in the history
1 more unit test
  • Loading branch information
ozdemirburak authored Nov 18, 2024
2 parents eae0c86 + ed1048c commit bc0455a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/CsvTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ public function testFromString()
$this->assertEquals($this->csvString, $csv->getData());
}

/**
* @group csv-basic-test
*/
public function testEmptyCsvString()
{
$csv = $this->initCsv(null)->fromString("");
$this->assertEquals("", $csv->getData());
}
/**
* @group csv-conversion-test
*/
Expand Down

0 comments on commit bc0455a

Please sign in to comment.