- Implemented OrdersRepository for handling order data with pagination, filtering, and sorting capabilities. - Added methods for retrieving order status options, quick stats, and detailed order information. - Created OrderStatusRepository for managing order status groups and statuses, including CRUD operations and sorting. - Introduced a bootstrap file for test environment setup and autoloading.
22 lines
480 B
XML
22 lines
480 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
bootstrap="tests/bootstrap.php"
|
|
cacheDirectory="storage/cache/phpunit"
|
|
colors="true"
|
|
executionOrder="depends,defects"
|
|
failOnWarning="true"
|
|
failOnRisky="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="orderPRO">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<source>
|
|
<include>
|
|
<directory>src</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|