We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4269b48 commit 1954056Copy full SHA for 1954056
testing/bootstrap.php
@@ -6,8 +6,13 @@
6
throw new Exception('You are not in a test directory');
7
}
8
9
+/**
10
+ * Our tests load global dependencies using coomposer
11
+ */
12
if (!trait_exists(Google\Cloud\TestUtils\TestTrait::class)) {
- throw new Exception('You need to run "bash testing/composer.sh" to installed the required global packages');
13
+ throw new Exception('You need to run "bash testing/composer.sh" to '
14
+ . 'installed the required global packages. Be sure to run these tests '
15
+ . 'using the global phpunit package (~/.composer/vendor/bin/phpunit)');
16
17
18
if (file_exists($testDir . '/composer.json')) {
0 commit comments