mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-10-31 19:22:33 +00:00
22 lines
554 B
XML
22 lines
554 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="phpseclib Unit Test Suite">
|
|
<directory>./tests/Unit/</directory>
|
|
</testsuite>
|
|
<testsuite name="phpseclib Functional Test Suite">
|
|
<directory>./tests/Functional/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<!-- Code Coverage -->
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./phpseclib/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|