mirror of
https://github.com/espocrm/espocrm.git
synced 2026-03-02 22:47:01 +00:00
19 lines
564 B
XML
19 lines
564 B
XML
<phpunit
|
|
bootstrap="vendor/autoload.php"
|
|
defaultTestSuite="unit"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory>tests/unit</directory>
|
|
</testsuite>
|
|
<testsuite name="integration">
|
|
<directory>tests/integration</directory>
|
|
</testsuite>
|
|
<testsuite name="integration-pg">
|
|
<directory>tests/integration</directory>
|
|
<exclude>tests/integration/Espo/Core/Utils/Database</exclude>
|
|
<exclude>tests/integration/Espo/Core/FulltextIndex/CheckCreatedIndexTest.php</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|