forked from GNUsocial/gnu-social
[TESTS] Add support for loading test suites from plugins and components
This commit is contained in:
parent
afa8443949
commit
df40dd7c66
@ -36,22 +36,28 @@
|
|||||||
<env name="MAIL_DRIVER" value="array"/>
|
<env name="MAIL_DRIVER" value="array"/>
|
||||||
</php>
|
</php>
|
||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="Controller">
|
<testsuite name="Controller">
|
||||||
<directory suffix="Test.php">./tests/Controller</directory>
|
<directory suffix="Test.php">./tests/Controller</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="Core">
|
<testsuite name="Core">
|
||||||
<directory suffix="Test.php">./tests/Core</directory>
|
<directory suffix="Test.php">./tests/Core</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="Entity">
|
<testsuite name="Entity">
|
||||||
<directory suffix="Test.php">./tests/Entity</directory>
|
<directory suffix="Test.php">./tests/Entity</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="Twig">
|
<testsuite name="Twig">
|
||||||
<directory suffix="Test.php">./tests/Twig</directory>
|
<directory suffix="Test.php">./tests/Twig</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="Util">
|
<testsuite name="Util">
|
||||||
<directory suffix="Test.php">./tests/Util</directory>
|
<directory suffix="Test.php">./tests/Util</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>
|
<testsuite name="Plugins">
|
||||||
|
<directory suffix="Test.php">./plugins/</directory>
|
||||||
|
</testsuite>
|
||||||
|
<testsuite name="Component">
|
||||||
|
<directory suffix="Test.php">./components/</directory>
|
||||||
|
</testsuite>
|
||||||
|
</testsuites>
|
||||||
<listeners>
|
<listeners>
|
||||||
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
|
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
|
||||||
</listeners>
|
</listeners>
|
||||||
|
Loading…
Reference in New Issue
Block a user