forked from GoogleCloudPlatform/appengine-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
32 lines (32 loc) · 1.3 KB
/
phpunit.xml
File metadata and controls
32 lines (32 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<phpunit
bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="API Tests">
<!-- Tests are Indivudually listed as they may have different requirements. -->
<directory>google/appengine/api/</directory>
</testsuite>
<testsuite name="Datastore Tests">
<directory>google/appengine/datastore/</directory>
</testsuite>
<testsuite name="Ext Tests">
<file>google/appengine/ext/remote_api/RemoteApiProtoTest.php</file>
<file>google/appengine/ext/session/MemcacheSessionHandlerTest.php</file>
<!-- Needs fixing to work with memcache Mocks -->
<exclude>
google/appengine/ext/cloud_storage_streams/CloudStorageStreamWrapperTest.php
</exclude>
</testsuite>
<testsuite name="Runtime Tests">
<directory>google/appengine/runtime/</directory>
<exclude>google/appengine/runtime/CurlLiteTest.php</exclude>
<!-- No way to exclude tests automatically if memcache compiled in. -->
<exclude>google/appengine/runtime/MemcacheTest.php</exclude>
<exclude>google/appengine/runtime/MemcachedTest.php</exclude>
</testsuite>
<testsuite name="CurlLite Tests">
<file phpVersion="5.5.0" phpVersionOperator=">=">
google/appengine/runtime/CurlLiteTest.php
</file>
</testsuite>
</testsuites>
</phpunit>