-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
22 lines (20 loc) · 618 Bytes
/
phpunit.xml.dist
File metadata and controls
22 lines (20 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
bootstrap="test/bootstrap.php"
colors="true"
>
<testsuites>
<testsuite name="highlight.php Test Suite">
<directory suffix="Test.php" phpVersion="5.4.0" phpVersionOperator=">=">test</directory>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="-1" />
</php>
<filter>
<whitelist>
<directory suffix="Test.php">test</directory>
</whitelist>
</filter>
</phpunit>