first commit

This commit is contained in:
2025-08-02 16:30:27 +02:00
commit 23646bfcee
14851 changed files with 1750626 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<phpunit
backupGlobals="false"
bootstrap="bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="true"
>
<php>
<server name="KERNEL_DIR" value="app/" />
</php>
<testsuites>
<testsuite name="engine">
<directory suffix="Test.php">.</directory>
<directory suffix="Test.php">../../bundles/</directory>
</testsuite>
<testsuite name="engine_units_float">
<directory suffix="FloatSuite.php">../../bundles/</directory>
</testsuite>
<testsuite name="shop">
<directory suffix="Test.php">../../../shop/tests/functional</directory>
<directory suffix="Test.php">../../../shop/bundles/</directory>
<directory suffix="Test.php">../../../shop/vendor-shared/kupshop/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../../bundles/</directory>
<directory suffix=".php">../../class/</directory>
<directory suffix=".php">../../web/</directory>
<exclude>
<directory suffix=".php">../../class/Smarty</directory>
<directory suffix=".php">../../class/highcharts</directory>
<directory suffix=".php">../../class/PHPExcel</directory>
<directory suffix=".php">../../class/sacy</directory>
<directory suffix=".php">../../class/xmlrpc</directory>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener" />
</listeners>
</phpunit>