-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
57 lines (57 loc) · 2.17 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
<phpunit
bootstrap="tests/includes/bootstrap.php"
backupGlobals="false"
colors="true"
beStrictAboutTestsThatDoNotTestAnything="true">
<testsuites>
<testsuite name="Deft unit tests">
<file>tests/unit/core.php</file>
<file>tests/unit/event.php</file>
<file>tests/unit/filter.php</file>
<file>tests/unit/filesystem.php</file>
<file>tests/unit/response/http.php</file>
<file>tests/unit/response/http/html.php</file>
<file>tests/unit/response/http/json.php</file>
</testsuite>
<testsuite name="Deft integration tests">
<file>tests/integration/core.php</file>
<file>tests/integration/event.php</file>
<file>tests/integration/filter.php</file>
<file>tests/integration/route.php</file>
</testsuite>
<!--<testsuite name="Selenium Test Suite">
<directory>../tests/selenium</directory>
</testsuite>-->
</testsuites>
<!-- <groups>-->
<!-- <exclude>-->
<!-- <group>ajax</group>-->
<!-- <group>ms-files</group>-->
<!-- <group>ms-required</group>-->
<!-- <group>external-http</group>-->
<!-- </exclude>-->
<!-- </groups>-->
<!-- <logging>-->
<!-- <log type="coverage-html" target="./coverage"/>-->
<!-- <log type="coverage-clover" target="./logs/clover.xml"/>-->
<!-- <log type="coverage-crap4j" target="./logs/crap4j.xml"/>-->
<!-- <log type="junit" target="./logs/junit.xml" logIncompleteSkipped="false"/>-->
<!-- </logging>-->
<listeners>
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener">
<arguments>
<array>
<element key="slowThreshold">
<integer>500</integer>
</element>
</array>
</arguments>
</listener>
</listeners>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">lib</directory>
<directory suffix=".php">lib</directory>
</whitelist>
</filter>
</phpunit>