forked from DataDog/dd-trace-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
62 lines (62 loc) · 2.59 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
beStrictAboutChangesToGlobalState="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutResourceUsageDuringSmallTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
bootstrap="tests/bootstrap.php"
colors="true"
columns="max"
verbose="true"
>
<testsuites>
<testsuite name="metrics">
<directory>tests/Metrics</directory>
</testsuite>
<testsuite name="auto-instrumentation">
<directory>tests/AutoInstrumentation/</directory>
</testsuite>
<testsuite name="distributed-tracing">
<directory>tests/DistributedTracing/</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/Integration/</directory>
</testsuite>
<testsuite name="cakephp-28-test">
<directory>tests/Integrations/CakePHP/V2_8</directory>
<directory>tests/Integrations/CLI/CakePHP/V2_8</directory>
</testsuite>
<testsuite name="codeigniter-22-test">
<directory>tests/Integrations/CodeIgniter/V2_2</directory>
</testsuite>
<testsuite name="laravel-58-test">
<directory>tests/Integrations/Laravel/V5_8</directory>
<directory>tests/Integrations/CLI/Laravel/V5_8</directory>
</testsuite>
<testsuite name="slim-312-test">
<directory>tests/Integrations/Slim/V3_12</directory>
</testsuite>
<testsuite name="custom-framework-autoloaded-test">
<file>tests/Integrations/Custom/Autoloaded/BackgroundSenderLogTest.php</file>
<file>tests/Integrations/Custom/Autoloaded/CircuitBreakerTest.php</file>
<file>tests/Integrations/Custom/Autoloaded/CommonScenariosTest.php</file>
<file>tests/Integrations/Custom/Autoloaded/CompileTimeDisabledTest.php</file>
<file>tests/Integrations/Custom/Autoloaded/CompileTimeEnabledTest.php</file>
<directory>tests/Integrations/CLI/Custom/Autoloaded</directory>
</testsuite>
<testsuite name="unit">
<directory>tests/Unit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<listeners>
<listener class="DDTrace\Tests\DDTestListener"/>
</listeners>
</phpunit>