-
Notifications
You must be signed in to change notification settings - Fork 14
/
phpunit.xml
38 lines (38 loc) · 1.14 KB
/
phpunit.xml
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
30
31
32
33
34
35
36
37
38
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="false"
colors="true"
>
<php>
<ini name="error_reporting" value="-1" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[total]=631&verbose=0"/>
</php>
<testsuites>
<testsuite name="unit_core">
<directory>tests/lib</directory>
</testsuite>
<testsuite name="bundle_core">
<directory>tests/bundle/Core</directory>
</testsuite>
<testsuite name="bundle_debug">
<directory>tests/bundle/Debug</directory>
</testsuite>
<testsuite name="bundle_installer">
<directory>tests/bundle/RepositoryInstaller</directory>
</testsuite>
<testsuite name="bundle_io">
<directory>tests/bundle/IO</directory>
</testsuite>
<testsuite name="bundle_lse">
<directory>tests/bundle/LegacySearchEngine</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>
</phpunit>