Skip to content

Commit

Permalink
add output for phpunit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrico committed Sep 18, 2023
1 parent 9cf5907 commit 67bd9ec
Showing 1 changed file with 25 additions and 19 deletions.
44 changes: 25 additions & 19 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,21 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" backupStaticAttributes="false" bootstrap="tests/phpunit/bootstrap.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>tests</directory>
<directory>vendor</directory>
</exclude>
<report>
<html outputDirectory="tmp"/>
</report>
</coverage>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">tests/phpunit/Unit</directory>
</testsuite>
</testsuites>
<logging/>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false"
backupStaticAttributes="false" bootstrap="tests/phpunit/bootstrap.php" colors="true"
convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true"
processIsolation="false" stopOnFailure="false">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>tests</directory>
<directory>vendor</directory>
</exclude>
<report>
<html outputDirectory="tmp" />
</report>
</coverage>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">tests/phpunit/Unit</directory>
</testsuite>
</testsuites>
<logging>
<testdoxText outputFile="php://stdout" />
</logging>
</phpunit>

0 comments on commit 67bd9ec

Please sign in to comment.