23 lines
581 B
XML
23 lines
581 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="phpunit.xsd"
|
|
bootstrap="./tests/bootstrap.php"
|
|
colors="true"
|
|
verbose="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false">
|
|
|
|
<testsuites>
|
|
<testsuite name="RetailCrm">
|
|
<directory>tests/RetailCrm/Tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src/RetailCrm</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|