Skip to content

Commit

Permalink
tests: migrate phpunit config-file
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris8934 authored and tobias-93 committed Jul 4, 2023
1 parent 52e2fb5 commit bcee50e
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="FOSJsRoutingBundle Test Suite">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Resources/</directory>
<directory>./Tests/</directory>
<directory>./vendor/</directory>
</exclude>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
bootstrap="./vendor/autoload.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd">
<coverage>
<include>
<directory>./</directory>
</include>
<exclude>
<directory>./Resources/</directory>
<directory>./Tests/</directory>
<directory>./vendor/</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="FOSJsRoutingBundle Test Suite">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit bcee50e

Please sign in to comment.