This repository was archived by the owner on Jan 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathphpunit.xml
More file actions
45 lines (45 loc) · 1.43 KB
/
phpunit.xml
File metadata and controls
45 lines (45 loc) · 1.43 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.2/phpunit.xsd"
bootstrap="./bootstrap.hh"
backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
colors="true"
verbose="true"
cacheTokens="false"
processIsolation="false">
<testsuites>
<testsuite name="framework-tests">
<directory suffix="Test.hh">./src/*</directory>
</testsuite>
<testsuite name="phpunit-tests">
<directory suffix="Test.hh">./vendor/zynga/phpunit/src/Zynga/PHPUnit/V2/Tests/System</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".hh">./src/*</directory>
<exclude>
<file>./bootstrap.hh</file>
<file>./vendor/zynga/zynga-hhvm-moduledev/src/skeleton/bootstrap.hh</file>
<directory suffix="Test.hh">./src/*</directory>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener">
<arguments>
<array>
<element key="slowThreshold">
<integer>100</integer>
</element>
<element key="reportLength">
<integer>20</integer>
</element>
</array>
</arguments>
</listener>
</listeners>
</phpunit>