mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-22 21:19:46 +05:30
24 lines
626 B
PHP
24 lines
626 B
PHP
<?php
|
|
|
|
namespace LeagueTests\Exception;
|
|
|
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class OAuthServerExceptionTest extends TestCase
|
|
{
|
|
public function testHasRedirect()
|
|
{
|
|
$exceptionWithRedirect = OAuthServerException::accessDenied('some hint', 'https://example.com/error');
|
|
|
|
$this->assertTrue($exceptionWithRedirect->hasRedirect());
|
|
}
|
|
|
|
public function testDoesNotHaveRedirect()
|
|
{
|
|
$exceptionWithoutRedirect = OAuthServerException::accessDenied('Some hint');
|
|
|
|
$this->assertFalse($exceptionWithoutRedirect->hasRedirect());
|
|
}
|
|
}
|