opencart-module/phpunit.xml.dist

28 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-06-13 16:13:08 +03:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
2018-09-27 16:46:04 +03:00
processIsolation="true"
2018-06-13 16:13:08 +03:00
stopOnFailure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="catalog-tests">
<directory suffix="CatalogTest.php">./tests/catalog/</directory>
</testsuite>
<testsuite name="admin-tests">
<directory suffix="AdminTest.php">./tests/admin/</directory>
</testsuite>
2018-09-27 16:46:04 +03:00
<testsuite name="library-tests">
<directory suffix="LibraryTest.php">./tests/library/</directory>
</testsuite>
2018-06-13 16:13:08 +03:00
</testsuites>
<php>
<env name="OC_ROOT" value="./www/" />
2018-09-27 16:46:04 +03:00
<env name="HTTP_SERVER" value="http://localhost:8000/" />
<env name="TEST_CONFIG" value="test-config" />
2018-06-13 16:13:08 +03:00
</php>
</phpunit>