Skip to content

Commit

Permalink
Reformat phpunit.xml.dist file
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Jul 16, 2024
1 parent af47700 commit 0a905c2
Showing 1 changed file with 28 additions and 21 deletions.
49 changes: 28 additions & 21 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="tests/bootstrap.php" cacheDirectory=".phpunit.cache">
<php>
<ini name="error_reporting" value="-1"/>
<ini name="date.timezone" value="UTC"/>
<server name="KERNEL_DIR" value="tests/app"/>
<server name="KERNEL_CLASS" value="TestKernel"/>
</php>
<testsuites>
<testsuite name="php-task Library Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>./</directory>
</include>
<exclude>
<directory>./vendor</directory>
<directory>./tests</directory>
</exclude>
</source>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="tests/bootstrap.php"
cacheDirectory=".phpunit.cache">
<php>
<ini name="error_reporting" value="-1"/>
<ini name="date.timezone" value="UTC"/>
<server name="KERNEL_DIR" value="tests/app"/>
<server name="KERNEL_CLASS" value="TestKernel"/>
</php>

<testsuites>
<testsuite name="php-task Library Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>

<source>
<include>
<directory>./</directory>
</include>
<exclude>
<directory>./vendor</directory>
<directory>./tests</directory>
</exclude>
</source>
</phpunit>

0 comments on commit 0a905c2

Please sign in to comment.