-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
43 lines (39 loc) · 1.4 KB
/
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
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" colors="true"
backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
forceCoversAnnotation="true"
verbose="true"
>
<testsuites>
<testsuite name="Bytedance Test Suite">
<directory suffix="Test.php">tests/Bytedance/</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-clover" target="build/clover.xml"/>
<log type="coverage-crap4j" target="build/crap4j.xml"/>
<log type="coverage-xml" target="build/coverage"/>
<log type="junit" target="build/junit.xml"/>
<log type="testdox-html" target="build/index.html"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">lib/</directory>
<directory suffix=".php">bin/</directory>
<exclude>
<file>vendor/autoload.php</file>
<file>tests/bootstrap.php</file>
<file>tests/s1.php</file>
</exclude>
</whitelist>
</filter>
<php>
<ini name="date.timezone" value="UTC"/>
</php>
</phpunit>