mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-01 16:33:07 +05:30
26 lines
797 B
PHP
26 lines
797 B
PHP
<?php
|
|
|
|
namespace LeagueTests;
|
|
|
|
use LeagueTests\Stubs\StubAbstractServer;
|
|
use \Mockery as M;
|
|
|
|
class AbstractTokenTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
function testSetGet()
|
|
{
|
|
$server = new StubAbstractServer();
|
|
$this->assertTrue($server->getRequest() instanceof \Symfony\Component\HttpFoundation\Request);
|
|
|
|
$server2 = new StubAbstractServer();
|
|
$server2->setRequest((new \Symfony\Component\HttpFoundation\Request));
|
|
$this->assertTrue($server2->getRequest() instanceof \Symfony\Component\HttpFoundation\Request);
|
|
}
|
|
|
|
function testGetStorageException()
|
|
{
|
|
$this->setExpectedException('League\OAuth2\Server\Exception\ServerErrorException');
|
|
$server = new StubAbstractServer();
|
|
$server->getStorage('foobar');
|
|
}
|
|
} |