[THRIFT-5757] Unit tests for php lib
Client: php
Patch: Volodymyr Panivko
This closes #2951
diff --git a/lib/php/phpunit.xml b/lib/php/phpunit.xml
index 2cbea95..58e8f5d 100644
--- a/lib/php/phpunit.xml
+++ b/lib/php/phpunit.xml
@@ -18,7 +18,7 @@
under the License.
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- bootstrap="../../vendor/autoload.php"
+ bootstrap="test/bootstrap.php"
cacheResult="false"
colors="true"
convertErrorsToExceptions="true"
@@ -34,8 +34,11 @@
</whitelist>
</filter>
<testsuites>
- <testsuite name="Thrift PHP Test Suite">
+ <testsuite name="Thrift PHP Unit Test Suite">
<directory>./test/Unit</directory>
</testsuite>
+ <testsuite name="Thrift PHP Integration Test Suite">
+ <directory>./test/Integration</directory>
+ </testsuite>
</testsuites>
</phpunit>