mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
28 lines
852 B
XML
28 lines
852 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="All">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
<testsuite name="Unit">
|
|
<directory>./tests/unit</directory>
|
|
</testsuite>
|
|
<testsuite name="Integration">
|
|
<directory>./tests/Integration</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|