mirror of
https://github.com/j0k3r/php-readability.git
synced 2026-09-27 14:36:23 +00:00
- remove test on Composer v1 - remove deprecated function - move `loadHtml()` into `init()` instead of `__construct` Kinda prepare 2.0 version :)
32 lines
820 B
XML
32 lines
820 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
bootstrap="vendor/autoload.php"
|
|
>
|
|
|
|
<testsuites>
|
|
<testsuite name="Readability">
|
|
<directory>./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src/</directory>
|
|
<exclude>
|
|
<directory>./tests</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<!-- <logging>
|
|
<log type="coverage-html" target="coverage" lowUpperBound="35" highLowerBound="70"/>
|
|
</logging> -->
|
|
</phpunit>
|