Travis Swientek e5163bb90b Added PHPUnit
2013-07-18 13:01:36 -05:00

29 lines
703 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
colors="true">
<php>
<const name="PHPUNIT_TESTSUITE" value="true"/>
</php>
<testsuites>
<testsuite name="PHPUnit Mock Objects">
<directory suffix="Test.php">../Tests</directory>
<directory suffix=".phpt">../Tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-text" target="php://stdout"/>
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../PHPUnit</directory>
<exclude>
<file>../PHPUnit/Framework/MockObject/Autoload.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>