2022-02-27 22:35:58 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
2022-03-09 00:59:30 +00:00
|
|
|
bootstrap="../vendor/autoload.php"
|
|
|
|
failOnWarning="true"
|
|
|
|
failOnRisky="true"
|
|
|
|
failOnIncomplete="true"
|
|
|
|
failOnEmptyTestSuite="true"
|
2022-02-27 22:35:58 +00:00
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="phpseclib Unit Test Suite">
|
|
|
|
<directory>./Unit/</directory>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="phpseclib Functional Test Suite">
|
|
|
|
<directory>./Functional/</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<coverage>
|
|
|
|
<include>
|
|
|
|
<directory>../phpseclib/</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
2022-03-09 00:59:30 +00:00
|
|
|
<php>
|
|
|
|
<ini name="date.timezone" value="UTC"/>
|
|
|
|
</php>
|
2022-02-27 22:35:58 +00:00
|
|
|
</phpunit>
|