Skip to content

Commit

Permalink
Merge pull request #7 from elminson/elminson-Test-enhancement
Browse files Browse the repository at this point in the history
Update phpunit.xml.dist.raw
  • Loading branch information
elminson authored Feb 15, 2019
2 parents 17877cc + 31006ff commit e95c027
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions src/phpunit.xml.dist.raw
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
<phpunit bootstrap="src/autoload.php">
<testsuites>
<testsuite name="{!projectname!}">
<file>tests/test{!projectname!}.php</file>
<directory>tests/*Test.php</directory>
<exclude></exclude>
</testsuite>
</testsuites>
</phpunit>
<?xml version="1.0"?>
<testsuites>
<phpunit colors="true" bootstrap="../vendor/autoload.php">
<testsuite name="{!projectname!}">
<testsuites>
<file>tests/test{!projectname!}.php</file>
<testsuite name="{!projectname!}">
<directory>tests/*Test.php</directory>
<directory suffix=".php">./</directory>
<exclude></exclude>
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
</phpunit>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../src</directory>
</whitelist>
</filter>
</phpunit>

0 comments on commit e95c027

Please sign in to comment.