PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
wilcity-mobile-app
/
vendor
/
google
/
auth
/
tests
<?php namespace Google\Auth\tests; use GuzzleHttp\ClientInterface; use PHPUnit\Framework\TestCase; abstract class BaseTest extends TestCase { public function onlyGuzzle6() { $version = ClientInterface::VERSION; if ('6' !== $version[0]) { $this->markTestSkipped('Guzzle 6 only'); } } public function onlyGuzzle5() { $version = ClientInterface::VERSION; if ('5' !== $version[0]) { $this->markTestSkipped('Guzzle 5 only'); } } /** * @see Google\Auth\$this->getValidKeyName */ public function getValidKeyName($key) { return preg_replace('|[^a-zA-Z0-9_\.! ]|', '', $key); } }
[+]
..
[-] FetchAuthTokenTest.php
[edit]
[-] BaseTest.php
[edit]
[-] OAuth2Test.php
[edit]
[+]
fixtures2
[-] bootstrap.php
[edit]
[-] FetchAuthTokenCacheTest.php
[edit]
[+]
Middleware
[-] CacheTraitTest.php
[edit]
[+]
fixtures
[+]
mocks
[+]
Subscriber
[+]
Cache
[+]
Credentials
[-] ApplicationDefaultCredentialsTest.php
[edit]
[+]
HttpHandler