39ba5b37ef
add a simle run-tests script that steals some code from photon to return the code coverage at the end of the test execution (we're only at about 8% - lots of work left...)
28 lines
793 B
XML
28 lines
793 B
XML
<phpunit backupGlobals="true"
|
|
backupStaticAttributes="false"
|
|
bootstrap="test/bootstrap.php"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
strict="false"
|
|
verbose="true">
|
|
|
|
<testsuites>
|
|
<testsuite name="Everything">
|
|
<directory>test/IDF/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">src/IDF</directory>
|
|
<exclude>
|
|
<directory suffix=".php">src/IDF/Tests</directory>
|
|
<directory suffix=".php">src/IDF/conf</directory>
|
|
<file>src/IDF/version.php</file>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|
|
|