forked from elastic/ecs-logging-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
34 lines (32 loc) · 953 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
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
bootstrap="./tests/bootstrap.php"
colors="true"
failOnRisky="true"
stopOnDefect="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="true"
stopOnRisky="true"
stopOnWarning="true"
testdox="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
cacheDirectory="_GENERATED/phpunit_cache"
>
<coverage>
<include>
<directory suffix=".php">./src/Elastic</directory>
</include>
</coverage>
<testsuites>
<testsuite name="ECS Logging Frameworks Test Suite">
<directory>./tests/Elastic</directory>
</testsuite>
</testsuites>
<php>
<ini name="date.timezone" value="UTC"/>
</php>
</phpunit>