43a439e7d0
This fixes issue 2.7 of https://defuse.ca/audits/zerobin.htm, and thus (with commit a24212afda90ca3e4b4ff5ce30d2012709b58a28) also issue 2.8. (cherry picked from commit 0b4db7ece313dd268e51fc47a0293a649927558a) Conflicts: index.php
19 lines
584 B
XML
19 lines
584 B
XML
<phpunit bootstrap="bootstrap.php" colors="true">
|
|
<testsuite name="ZeroBin Test Suite">
|
|
<directory suffix=".php">./</directory>
|
|
<exclude>mcrypt_mock.php</exclude>
|
|
</testsuite>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">../lib</directory>
|
|
<exclude>
|
|
<file>../lib/zerobin/abstract.php</file>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-html" target="log/coverage-report" charset="UTF-8" yui="true" highlight="true" lowUpperBound="50" highLowerBound="80" />
|
|
<log type="testdox-html" target="log/testdox.html" />
|
|
</logging>
|
|
</phpunit>
|