Separate framework and modules tests logically

refs #3494
This commit is contained in:
Alexander A. Klimov 2018-06-28 14:26:37 +02:00
parent 966148e8f0
commit fd239fa40c

View File

@ -4,11 +4,13 @@
<!-- <!--
Unit testing Unit testing
--> -->
<testsuite name="unit"> <testsuite name="unit-framework">
<directory>../../test/php/application/</directory> <directory>../../test/php/application/</directory>
<directory>../../test/php/library/</directory> <directory>../../test/php/library/</directory>
</testsuite>
<!-- Module tests are independent from core tests --> <!-- Module tests are independent from core tests -->
<testsuite name="unit-modules">
<directory>../*/test/php</directory> <directory>../*/test/php</directory>
<exclude>../*/test/php/regression</exclude> <exclude>../*/test/php/regression</exclude>
</testsuite> </testsuite>
@ -16,8 +18,12 @@
<!-- <!--
Regression testing Regression testing
--> -->
<testsuite name="regression"> <testsuite name="regression-framework">
<directory>../../test/php/regression/</directory> <directory>../../test/php/regression/</directory>
</testsuite>
<!-- Module tests are independent from core tests -->
<testsuite name="regression-modules">
<directory>../*/test/php/regression</directory> <directory>../*/test/php/regression</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>