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
4 changes: 2 additions & 2 deletions appengine/flexible/analytics/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<phpunit bootstrap="./test/bootstrap.php" colors="true">
<php>
<env name="GA_TRACKING_ID" value="UA-78971600-1"/>
</php>
<testsuites>
<testsuite>
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
Expand Down
4 changes: 2 additions & 2 deletions appengine/flexible/cloudsql/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<phpunit bootstrap="./test/bootstrap.php" colors="true">
<testsuites>
<testsuite>
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
Expand Down
4 changes: 2 additions & 2 deletions appengine/flexible/datastore/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<phpunit bootstrap="./test/bootstrap.php" colors="true">
<testsuites>
<testsuite>
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
Expand Down
4 changes: 2 additions & 2 deletions appengine/flexible/drupal8/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="tests/bootstrap.php">
<phpunit bootstrap="test/bootstrap.php">
<testsuites>
<testsuite name="Drupal deployment test">
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>
4 changes: 2 additions & 2 deletions appengine/flexible/laravel/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="tests/bootstrap.php">
<phpunit bootstrap="test/bootstrap.php">
<testsuites>
<testsuite name="Laravel deployment test">
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>
4 changes: 2 additions & 2 deletions appengine/flexible/memcache/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<phpunit bootstrap="./test/bootstrap.php" colors="true">
<testsuites>
<testsuite>
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
Expand Down
4 changes: 2 additions & 2 deletions appengine/flexible/staticcontent/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<phpunit bootstrap="./test/bootstrap.php" colors="true">
<testsuites>
<testsuite>
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>
4 changes: 2 additions & 2 deletions appengine/flexible/symfony/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="tests/bootstrap.php">
<phpunit bootstrap="test/bootstrap.php">
<testsuites>
<testsuite name="Symfony deployment test">
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
use Silex\WebTestCase;

class TwilioTest extends WebTestCase
class LocalTest extends WebTestCase
{
public function createApplication()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
use Silex\WebTestCase;

class cloudsqlTest extends WebTestCase
class LocalTest extends WebTestCase
{
public function createApplication()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
use Silex\WebTestCase;

class httpTest extends WebTestCase
class LocalTest extends WebTestCase
{
private $expected;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

use google\appengine\api\log\LogService;

class loggingTest extends PHPUnit_Framework_TestCase
class LocalTest extends PHPUnit_Framework_TestCase
{
public function testNoLogs()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

class mailTest extends PHPUnit_Framework_TestCase
class LocalTest extends PHPUnit_Framework_TestCase
{
public function testSendMail()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
use Silex\WebTestCase;

class mailgunTest extends WebTestCase
class LocalTest extends WebTestCase
{
private $recipient;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
use Silex\WebTestCase;

class mailjetTest extends WebTestCase
class LocalTest extends WebTestCase
{
public function createApplication()
{
Expand Down
4 changes: 2 additions & 2 deletions appengine/standard/memcache/phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<phpunit bootstrap="./test/bootstrap.php" colors="true">
<testsuites>
<testsuite>
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>
4 changes: 2 additions & 2 deletions appengine/standard/modules/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="tests/bootstrap.php">
<phpunit bootstrap="test/bootstrap.php">
<php>
<env name="LOCAL_TEST_TARGETS" value="app.yaml backend.yaml"/>
</php>
<testsuites>
<testsuite name="PHP Modules API unit tests">
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
Expand Down
4 changes: 2 additions & 2 deletions appengine/standard/phpmyadmin/phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<phpunit bootstrap="./test/bootstrap.php" colors="true">
<testsuites>
<testsuite>
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use Silex\WebTestCase;
use google\appengine\api\cloud_storage\CloudStorageTools;

class storageTest extends WebTestCase
class LocalTest extends WebTestCase
{
public function createApplication()
{
Expand Down
4 changes: 2 additions & 2 deletions appengine/standard/taskqueue/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="tests/bootstrap.php">
<phpunit bootstrap="test/bootstrap.php">
<testsuites>
<testsuite name="PHP Taskqueue API unit tests">
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

use Silex\WebTestCase;

class twilioTest extends WebTestCase
class LocalTest extends WebTestCase
{
public function createApplication()
{
Expand Down
4 changes: 2 additions & 2 deletions appengine/standard/users/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<phpunit bootstrap="tests/bootstrap.php">
<phpunit bootstrap="test/bootstrap.php">
<testsuites>
<testsuite name="PHP Users API unit tests">
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
<logging>
Expand Down
2 changes: 1 addition & 1 deletion appengine/wordpress/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
},
"autoload": {
"psr-4": { "Google\\Cloud\\Helper\\": "src/",
"Google\\Cloud\\Test\\": "tests/"}
"Google\\Cloud\\Test\\": "test/"}
}
}
4 changes: 2 additions & 2 deletions appengine/wordpress/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<phpunit bootstrap="./test/bootstrap.php" colors="true">
<testsuites>
<testsuite>
<directory>tests</directory>
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

use GuzzleHttp\Client;

class FlexTest extends \PHPUnit_Framework_TestCase
class DeployFlexTest extends \PHPUnit_Framework_TestCase
{
private $client;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

use GuzzleHttp\Client;

class StdTest extends \PHPUnit_Framework_TestCase
class DeployStandardTest extends \PHPUnit_Framework_TestCase
{
private $client;

Expand Down