-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
43 lines (43 loc) · 1.4 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
<?xml version="1.0" encoding="utf-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
executionOrder="depends,defects"
cacheDirectory="tools/phpunit.cache"
>
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory suffix=".php">src/DOM/Exception</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="base">
<directory>tests/Encoding</directory>
<directory>tests/XML</directory>
</testsuite>
<testsuite name="dom">
<directory>tests/DOM</directory>
<directory>tests/WebPlatformTests/DOM</directory>
<directory>tests/WebPlatformTests/DOMParsing</directory>
<directory>tests/WebPlatformTests/SanitizerApi</directory>
</testsuite>
<testsuite name="html">
<directory>tests/HTML</directory>
<directory>tests/HTML5Lib</directory>
<file>tests/SoupletteTest.php</file>
</testsuite>
<testsuite name="css-syntax">
<directory>tests/CSS/Syntax</directory>
</testsuite>
<testsuite name="css-selectors">
<directory>tests/CSS/Selectors/Parser</directory>
<directory>tests/CSS/Selectors/Node</directory>
<directory>tests/WebPlatformTests/CSS/Selectors</directory>
</testsuite>
</testsuites>
</phpunit>