travis-ci.xml (703B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <phpunit backupGlobals="false" 4 colors="true"> 5 <php> 6 <const name="PHPUNIT_TESTSUITE" value="true"/> 7 </php> 8 9 <testsuites> 10 <testsuite name="PHPUnit Mock Objects"> 11 <directory suffix="Test.php">../Tests</directory> 12 <directory suffix=".phpt">../Tests</directory> 13 </testsuite> 14 </testsuites> 15 16 <logging> 17 <log type="coverage-text" target="php://stdout"/> 18 </logging> 19 20 <filter> 21 <whitelist addUncoveredFilesFromWhitelist="true"> 22 <directory suffix=".php">../PHPUnit</directory> 23 <exclude> 24 <file>../PHPUnit/Framework/MockObject/Autoload.php</file> 25 </exclude> 26 </whitelist> 27 </filter> 28 </phpunit>