| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 |
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd" |
| 4 |
colors="true" |
| 5 |
bootstrap="tests/bootstrap.php"> |
| 6 |
<testsuites> |
| 7 |
<testsuite name="Google YouTube API tests"> |
| 8 |
<directory>tests/youtube</directory> |
| 9 |
</testsuite> |
| 10 |
<testsuite name="Google Tasks API tests"> |
| 11 |
<directory>tests/tasks</directory> |
| 12 |
</testsuite> |
| 13 |
<testsuite name="Google PageSpeed API tests"> |
| 14 |
<directory>tests/pagespeed</directory> |
| 15 |
</testsuite> |
| 16 |
<testsuite name="Google UrlShortener API tests"> |
| 17 |
<directory>tests/urlshortener</directory> |
| 18 |
</testsuite> |
| 19 |
<testsuite name="Google Plus API tests"> |
| 20 |
<directory>tests/plus</directory> |
| 21 |
</testsuite> |
| 22 |
<testsuite name="AdSense Management API tests"> |
| 23 |
<directory>tests/adsense</directory> |
| 24 |
</testsuite> |
| 25 |
<testsuite name="Google API PHP Library core component tests"> |
| 26 |
<directory>tests/general</directory> |
| 27 |
</testsuite> |
| 28 |
</testsuites> |
| 29 |
<filter> |
| 30 |
<blacklist> |
| 31 |
<directory suffix=".php">tests</directory> |
| 32 |
</blacklist> |
| 33 |
</filter> |
| 34 |
</phpunit> |
| 35 |
|