Skip to content

Commit

Permalink
phpunit --migrate-configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian committed Oct 10, 2024
1 parent 5bddf1c commit 58fdb6d
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit bootstrap="./test/bootstrap.php" colors="true">
<testsuites>
<testsuite name="Transport API Test Suite">
<directory suffix="Test.php">./test/Transport/</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory suffix=".php">./lib/Transport/</directory>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./test/bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./lib/Transport/</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Transport API Test Suite">
<directory suffix="Test.php">./test/Transport/</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 58fdb6d

Please sign in to comment.