Some checks failed
abc-api/abcParser/pipeline/head There was a failure building this commit
57 lines
2.0 KiB
XML
57 lines
2.0 KiB
XML
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
|
|
backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
cacheTokens="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
forceCoversAnnotation="false"
|
|
mapTestClassNameToCoveredClassName="false"
|
|
printerClass="PHPUnit_TextUI_ResultPrinter"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
stopOnRisky="false"
|
|
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
|
|
timeoutForSmallTests="1"
|
|
timeoutForMediumTests="10"
|
|
timeoutForLargeTests="60"
|
|
verbose="true">
|
|
<logging>
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
|
</logging>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">console</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<testsuites>
|
|
<testsuite name="Console Test Suite">
|
|
<directory>tests/Console</directory>
|
|
</testsuite>
|
|
<testsuite name="Atoms Test Suite">
|
|
<directory>tests/Atoms</directory>
|
|
</testsuite>
|
|
<testsuite name="Bags Test Suite">
|
|
<directory>tests/Bags</directory>
|
|
</testsuite>
|
|
<testsuite name="Reports Test Suite">
|
|
<directory>tests/Reports</directory>
|
|
</testsuite>
|
|
<testsuite name="Repositories Test Suite">
|
|
<directory>tests/Repositories</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|