forked from simplehtmldom/simplehtmldom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
41 lines (37 loc) · 1.09 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
<!--
PHPUnit is a programmer-oriented testing framework for PHP.
https://phpunit.de/
Unit tests are based on PHPUnit 6
https://phpunit.de/announcements/phpunit-6.html
-->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
colors="true"
processIsolation="false"
timeoutForSmallTests="1"
timeoutForMediumTests="1"
timeoutForLargeTests="6" >
<testsuites>
<testsuite name="standard">
<directory suffix='_test.php'>tests</directory>
<exclude>tests/memory_parsing_test.php</exclude>
<exclude>tests/entity_decoding_test.php</exclude>
</testsuite>
<testsuite name="memory">
<file>tests/memory_parsing_test.php</file>
</testsuite>
<testsuite name="entity_decoding">
<file>tests/entity_decoding_test.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>simple_html_dom.php</directory>
<directory>HtmlDocument.php</directory>
<directory>HtmlNode.php</directory>
<directory>HtmlWeb.php</directory>
<directory>Debug.php</directory>
</whitelist>
</filter>
</phpunit>