Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Apr 18, 2021
1 parent cac57c9 commit ac8e5be
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="vendor/autoload.php"
Expand All @@ -9,22 +11,21 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="true"
>

<testsuites>
<testsuite name="View Test Suite">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>

<filter>
<whitelist addUncoveredFilesFromWhitelist="false">
<directory suffix=".php">src/</directory>
</whitelist>
</filter>

<php>
<env name="MEMORY_DRIVER" value="runtime.default"/>
</php>
verbose="true">
<coverage includeUncoveredFiles="false">
<include>
<directory suffix=".php">src/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="feature">
<directory suffix="Test.php">./tests/Feature/</directory>
</testsuite>
<testsuite name="unit">
<directory suffix="Test.php">./tests/Unit/</directory>
</testsuite>
</testsuites>
<php>
<env name="MEMORY_DRIVER" value="runtime.default"/>
</php>
</phpunit>

0 comments on commit ac8e5be

Please sign in to comment.