Skip to content

Commit

Permalink
Update: add unit testsuite
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbrauer committed Oct 9, 2017
1 parent 7de1518 commit ed0ffe6
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,21 @@
verbose="true"
colors="true"
>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
</whitelist>
</filter>

<testsuites>
<testsuite name="general">
<testsuite name="fullspec">
<directory suffix=".spec.php">tests/</directory>
</testsuite>
</testsuites>

<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="unit">
<directory suffix=".spec.php">tests/unit/</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit ed0ffe6

Please sign in to comment.