tor-spider/phpunit.xml

27 lines
682 B
XML
Raw Normal View History

2016-12-21 12:57:48 -08:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="phpunit.xsd"
bootstrap="tests/bootstrap.php"
backupGlobals="false"
verbose="true">
<testsuites>
2016-12-22 17:18:29 -08:00
<testsuite name="Binary Test">
<directory suffix="Test.php">tests</directory>
2016-12-21 12:57:48 -08:00
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
2016-12-22 17:18:29 -08:00
<directory>src</directory>
2016-12-21 12:57:48 -08:00
</exclude>
</whitelist>
</filter>
<php>
<const name="PHPUNIT_TESTSUITE" value="true"/>
</php>
</phpunit>