-
-
Notifications
You must be signed in to change notification settings - Fork 797
/
phpunit.xml.dist
29 lines (24 loc) · 990 Bytes
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./tests/bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory>./src/</directory>
</include>
<exclude>
<directory>./src/Resources</directory>
</exclude>
</coverage>
<php>
<!-- Allowing 14 deprecations related to changes in Symfony AbstractController 5.4+ -->
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[direct]=14"/>
<env name="KERNEL_CLASS" value="HWI\Bundle\OAuthBundle\Tests\App\AppKernel"/>
</php>
<testsuites>
<testsuite name="HWIOAuthBundle test suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>
</phpunit>