Skip to content

Commit

Permalink
Fix phpunit config file
Browse files Browse the repository at this point in the history
  • Loading branch information
rbairwell committed Mar 15, 2019
1 parent f37015a commit 817ee6e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="../tests/bootstrap.php" colors="true" forceCoversAnnotation="true">
<phpunit bootstrap="./tests/bootstrap.php" colors="true" forceCoversAnnotation="true">
<testsuites>
<testsuite name="Tests">
<directory suffix=".php">../tests</directory>
<directory suffix=".php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../src</directory>
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix="Interface.php">../src</directory>
<directory suffix="Interface.php">./src</directory>
</exclude>
</whitelist>
</filter>
Expand Down

0 comments on commit 817ee6e

Please sign in to comment.