[TOOLS][TESTS] Split tests into different test suites
This commit is contained in:
parent
9c9e86649a
commit
372cf91fbc
@ -30,10 +30,26 @@
|
|||||||
<server name="SHELL_VERBOSITY" value="-1"/>
|
<server name="SHELL_VERBOSITY" value="-1"/>
|
||||||
<server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
|
<server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
|
||||||
<server name="SYMFONY_PHPUNIT_VERSION" value="9.5"/>
|
<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>
|
</php>
|
||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="Project Test Suite">
|
<testsuite name="Controller">
|
||||||
<directory>tests</directory>
|
<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>
|
</testsuite>
|
||||||
</testsuites>
|
</testsuites>
|
||||||
<listeners>
|
<listeners>
|
||||||
|
Loading…
Reference in New Issue
Block a user