mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2024-11-26 03:51:06 +01:00
21 lines
563 B
XML
21 lines
563 B
XML
<phpunit bootstrap="./vendor/autoload.php">
|
|
<testsuites>
|
|
<testsuite name="Controllers">
|
|
<directory>./controller/</directory>
|
|
<file>*Test.php</file>
|
|
</testsuite>
|
|
<testsuite name="Core">
|
|
<directory>./core/</directory>
|
|
<file>*Test.php</file>
|
|
</testsuite>
|
|
<testsuite name="Entities">
|
|
<directory>./entity/</directory>
|
|
<file>*Test.php</file>
|
|
</testsuite>
|
|
<testsuite name="Repositories">
|
|
<directory>./repository/</directory>
|
|
<file>*Test.php</file>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|