2013-06-04 15:55:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-05-31 13:47:15 +02:00
|
|
|
<phpunit backupGlobals="true"
|
|
|
|
backupStaticAttributes="true"
|
|
|
|
colors="false"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
forceCoversAnnotation="false"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnError="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
stopOnIncomplete="false"
|
|
|
|
stopOnSkipped="false"
|
|
|
|
strict="false"
|
|
|
|
verbose="false">
|
|
|
|
|
2013-06-04 15:55:44 +02:00
|
|
|
<logging>
|
|
|
|
<log type="coverage-clover" target="../../build/log/phpunit_coverage.xml"/>
|
|
|
|
<log type="junit" target="../../build/log/phpunit_results.xml" logIncompleteSkipped="true"/>
|
|
|
|
</logging>
|
2013-05-31 13:47:15 +02:00
|
|
|
|
2013-06-04 15:55:44 +02:00
|
|
|
<testsuites>
|
|
|
|
<!--
|
|
|
|
Unit testing
|
|
|
|
-->
|
|
|
|
<testsuite name="unit">
|
|
|
|
<directory>application/</directory>
|
|
|
|
<directory>bin/</directory>
|
|
|
|
<directory>library/</directory>
|
|
|
|
</testsuite>
|
2013-05-31 13:47:15 +02:00
|
|
|
|
2013-06-04 15:55:44 +02:00
|
|
|
<!--
|
|
|
|
Regression testing
|
|
|
|
-->
|
|
|
|
<testsuite name="regression">
|
|
|
|
<directory>regression/</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
</phpunit>
|