[TOOLS][TESTS] Split tests into different test suites

This commit is contained in:
Hugo Sales 2022-03-06 23:49:56 +00:00 committed by Diogo Peralta Cordeiro
parent 9c9e86649a
commit 372cf91fbc
Signed by: diogo
GPG Key ID: 18D2D35001FBFAB0
1 changed files with 20 additions and 4 deletions

View File

@ -30,12 +30,28 @@
<server name="SHELL_VERBOSITY" value="-1"/>
<server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
<server name="SYMFONY_PHPUNIT_VERSION" value="9.5"/>
<!-- <env name="CACHE_DRIVER" value="array"/> -->
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="MAIL_DRIVER" value="array"/>
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<testsuite name="Controller">
<directory suffix="Test.php">./tests/Controller</directory>
</testsuite>
<testsuite name="Core">
<directory suffix="Test.php">./tests/Core</directory>
</testsuite>
<testsuite name="Entity">
<directory suffix="Test.php">./tests/Entity</directory>
</testsuite>
<testsuite name="Twig">
<directory suffix="Test.php">./tests/Twig</directory>
</testsuite>
<testsuite name="Util">
<directory suffix="Test.php">./tests/Util</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>