add composer's vendor directory
This commit is contained in:
parent
01a3860d73
commit
60b094d5fa
745 changed files with 56017 additions and 1 deletions
16
vendor/bshaffer/oauth2-server-php/test/OAuth2/AutoloadTest.php
vendored
Normal file
16
vendor/bshaffer/oauth2-server-php/test/OAuth2/AutoloadTest.php
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace OAuth2;
|
||||
|
||||
class AutoloadTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testClassesExist()
|
||||
{
|
||||
// autoloader is called in test/bootstrap.php
|
||||
$this->assertTrue(class_exists('OAuth2\Server'));
|
||||
$this->assertTrue(class_exists('OAuth2\Request'));
|
||||
$this->assertTrue(class_exists('OAuth2\Response'));
|
||||
$this->assertTrue(class_exists('OAuth2\GrantType\UserCredentials'));
|
||||
$this->assertTrue(interface_exists('OAuth2\Storage\AccessTokenInterface'));
|
||||
}
|
||||
}
|
Reference in a new issue