2012-04-13 10:20:54 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-08-21 15:37:37 -05:00
|
|
|
<phpunit
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
|
|
|
backupGlobals="false"
|
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
|
colors="true"
|
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
|
processIsolation="false"
|
|
|
|
|
stopOnFailure="false"
|
|
|
|
|
executionOrder="random"
|
|
|
|
|
failOnWarning="true"
|
|
|
|
|
failOnRisky="true"
|
|
|
|
|
failOnEmptyTestSuite="true"
|
|
|
|
|
beStrictAboutOutputDuringTests="true"
|
|
|
|
|
verbose="true"
|
|
|
|
|
>
|
2012-04-13 10:20:54 +02:00
|
|
|
<testsuites>
|
2022-08-21 15:37:37 -05:00
|
|
|
<testsuite name="Danjones Test Suite">
|
|
|
|
|
<directory>tests</directory>
|
2012-04-13 10:20:54 +02:00
|
|
|
</testsuite>
|
|
|
|
|
</testsuites>
|
2022-08-21 15:37:37 -05:00
|
|
|
<coverage>
|
|
|
|
|
<include>
|
|
|
|
|
<directory suffix=".php">./src</directory>
|
|
|
|
|
</include>
|
|
|
|
|
<report>
|
|
|
|
|
<html outputDirectory="build/coverage"/>
|
|
|
|
|
<text outputFile="build/coverage.txt"/>
|
|
|
|
|
<clover outputFile="build/logs/clover.xml"/>
|
|
|
|
|
</report>
|
|
|
|
|
</coverage>
|
|
|
|
|
<logging>
|
|
|
|
|
<junit outputFile="build/report.junit.xml"/>
|
|
|
|
|
</logging>
|
2012-04-13 10:20:54 +02:00
|
|
|
</phpunit>
|