Skip to content

Commit

Permalink
added phpunit config file.
Browse files Browse the repository at this point in the history
  • Loading branch information
stopfstedt committed Mar 14, 2016
1 parent fb3715a commit 5ac06ab
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>

<!-- http://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "false">

<testsuites>
<testsuite name="Ilios MeSH Parser tests">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 5ac06ab

Please sign in to comment.