Move binary testing stuff and phpunit.xml to its own module

refs #6092
This commit is contained in:
Johannes Meyer 2014-06-12 14:16:28 +02:00
parent 3047992ab5
commit d28d20696c
6 changed files with 7 additions and 8 deletions

View File

@ -1,25 +1,24 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="bootstrap.php"> <phpunit bootstrap="../../test/php/bootstrap.php">
<testsuites> <testsuites>
<!-- <!--
Unit testing Unit testing
--> -->
<testsuite name="unit"> <testsuite name="unit">
<directory>application/</directory> <directory>../../test/php/application/</directory>
<directory>bin/</directory> <directory>../../test/php/library/</directory>
<directory>library/</directory>
<!-- Module tests are independent from core tests --> <!-- Module tests are independent from core tests -->
<directory>../../modules/*/test/php</directory> <directory>../*/test/php</directory>
<exclude>../../modules/*/test/php/regression</exclude> <exclude>../*/test/php/regression</exclude>
</testsuite> </testsuite>
<!-- <!--
Regression testing Regression testing
--> -->
<testsuite name="regression"> <testsuite name="regression">
<directory>regression/</directory> <directory>../../test/php/regression/</directory>
<directory>../../modules/*/test/regression</directory> <directory>../*/test/php/regression</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<filter> <filter>