23 lines
618 B
XML
23 lines
618 B
XML
<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>
|