Csv tests

This commit is contained in:
Simon Vieille 2015-03-09 20:05:36 +01:00
commit b180f00940
4 changed files with 197 additions and 0 deletions

18
phpunit.xml Normal file
View file

@ -0,0 +1,18 @@
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "false"
bootstrap = "./tests/bootstrap.php" >
<testsuites>
<testsuite name="Deblan CSV Test Suite">
<directory>tests/*</directory>
</testsuite>
</testsuites>
</phpunit>