Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 18 additions & 17 deletions bigquery/api/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,22 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="../../testing/bootstrap.php">
<testsuites>
<testsuite name="PHP bigquery test">
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../testing/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="PHP bigquery test">
<directory>test</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>
37 changes: 19 additions & 18 deletions bigquery/stackoverflow/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,23 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="../../testing/bootstrap.php">
<testsuites>
<testsuite name="PHP BigQuery Shakespeare test">
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist>
<file>shakespeare.php</file>
<directory suffix=".php">./src</directory>
<exclude>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../testing/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<file>shakespeare.php</file>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="PHP BigQuery Shakespeare test">
<directory>test</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>
43 changes: 18 additions & 25 deletions bigtable/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,29 +14,22 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="../testing/bootstrap.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
timeoutForSmallTests="10"
timeoutForMediumTests="30"
timeoutForLargeTests="120">
<testsuites>
<testsuite name="PHP Bigtable tests">
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>./src</directory>
<exclude>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="../testing/bootstrap.php" colors="true" processIsolation="false" stopOnFailure="false" timeoutForSmallTests="10" timeoutForMediumTests="30" timeoutForLargeTests="120" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage includeUncoveredFiles="true">
<include>
<directory>./src</directory>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
<report>
<clover outputFile="./build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="PHP Bigtable tests">
<directory>test</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>
35 changes: 18 additions & 17 deletions datastore/api/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,22 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="../../testing/bootstrap.php">
<testsuites>
<testsuite name="Datastore Cloud library Tests">
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../testing/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="Datastore Cloud library Tests">
<directory>test</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>
35 changes: 18 additions & 17 deletions datastore/quickstart/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,22 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="../../testing/bootstrap.php">
<testsuites>
<testsuite name="Google Datastore Quickstart Tests">
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist>
<file>quickstart.php</file>
<exclude>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../testing/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<file>quickstart.php</file>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="Google Datastore Quickstart Tests">
<directory>test</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>
35 changes: 18 additions & 17 deletions datastore/tutorial/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,22 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="../../testing/bootstrap.php">
<testsuites>
<testsuite name="Cloud Datastore tutorial application tests">
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../testing/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="Cloud Datastore tutorial application tests">
<directory>test</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>
41 changes: 21 additions & 20 deletions firestore/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,25 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="../testing/bootstrap.php">
<testsuites>
<testsuite name="PHP firestore test">
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="PHPUNIT_TESTS" value="1"/>
</php>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../testing/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="PHP firestore test">
<directory>test</directory>
</testsuite>
</testsuites>
<logging/>
<php>
<env name="PHPUNIT_TESTS" value="1"/>
</php>
</phpunit>
41 changes: 21 additions & 20 deletions pubsub/api/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,25 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="../../testing/bootstrap.php">
<testsuites>
<testsuite name="PHP pubsub test">
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="PHPUNIT_TESTS" value="1"/>
</php>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../testing/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="PHP pubsub test">
<directory>test</directory>
</testsuite>
</testsuites>
<logging/>
<php>
<env name="PHPUNIT_TESTS" value="1"/>
</php>
</phpunit>
37 changes: 19 additions & 18 deletions pubsub/app/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,23 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="../../testing/bootstrap.php">
<testsuites>
<testsuite name="PHP pubsub test">
<directory>test</directory>
<exclude>test/DeployAppEngineFlexTest.php</exclude>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist>
<file>app.php</file>
<exclude>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../testing/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<file>app.php</file>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="PHP pubsub test">
<directory>test</directory>
<exclude>test/DeployAppEngineFlexTest.php</exclude>
</testsuite>
</testsuites>
<logging/>
</phpunit>
Loading