Skip to content

Commit

Permalink
Changed to migrated version
Browse files Browse the repository at this point in the history
  • Loading branch information
jamielsharief committed Jan 3, 2021
1 parent a43ce69 commit af5a690
Showing 1 changed file with 16 additions and 22 deletions.
38 changes: 16 additions & 22 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
backupGlobals="true"
>
<testsuites>
<testsuite name="OriginPHP Configurable">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
<php>
<const name="PHPUNIT" value="true"/>
<env name="ORIGIN_ENV" value="test"/>
</php>
</phpunit>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="vendor/autoload.php" backupGlobals="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./src/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="OriginPHP Configurable">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<php>
<const name="PHPUNIT" value="true"/>
<env name="ORIGIN_ENV" value="test"/>
</php>
</phpunit>

0 comments on commit af5a690

Please sign in to comment.