Skip to content

Commit

Permalink
migrated phpunit.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Nov 19, 2024
1 parent 5489104 commit 24acef2
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="./phpunit.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
cacheResultFile="./tests/support/output"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
verbose="true"
processIsolation="true"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="volt/unit">
<directory>./tests/unit</directory>
</testsuite>
</testsuites>
cacheDirectory="./tests/support/output/.phpunit.cache">
<testsuites>
<testsuite name="volt/unit">
<directory>./tests/unit</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>

0 comments on commit 24acef2

Please sign in to comment.