2015-01-19 11:59:22 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2015-01-22 10:14:37 +01:00
|
|
|
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
|
|
|
|
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
|
|
|
|
backupGlobals="false"
|
|
|
|
colors="true"
|
2015-01-19 11:59:22 +01:00
|
|
|
>
|
|
|
|
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="wallabag Test Suite">
|
2015-01-30 10:49:47 +01:00
|
|
|
<directory>src/*/*Bundle/Tests</directory>
|
|
|
|
<directory>src/*/Bundle/*Bundle/Tests</directory>
|
|
|
|
<directory>src/*Bundle/Tests</directory>
|
2015-01-19 11:59:22 +01:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2015-01-30 10:49:47 +01:00
|
|
|
<directory>src</directory>
|
2015-01-22 10:14:37 +01:00
|
|
|
<exclude>
|
2015-01-30 10:49:47 +01:00
|
|
|
<directory>src/*Bundle/Resources</directory>
|
|
|
|
<directory>src/*Bundle/Tests</directory>
|
|
|
|
<directory>src/*/*Bundle/Resources</directory>
|
|
|
|
<directory>src/*/*Bundle/Tests</directory>
|
|
|
|
<directory>src/*/Bundle/*Bundle/Resources</directory>
|
|
|
|
<directory>src/*/Bundle/*Bundle/Tests</directory>
|
2015-01-22 10:14:37 +01:00
|
|
|
</exclude>
|
2015-01-19 11:59:22 +01:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
|
2015-01-22 10:14:37 +01:00
|
|
|
</phpunit>
|