1 | <?php |
||
8 | class OAuth2ServiceTest extends \Codeception\Test\Unit |
||
9 | { |
||
10 | use \Codeception\Specify; |
||
11 | |||
12 | /** |
||
13 | * @var OAuth2Service |
||
14 | */ |
||
15 | private $service; |
||
16 | |||
17 | /** |
||
18 | * @inheritdoc |
||
19 | */ |
||
20 | protected function setup() |
||
25 | |||
26 | /** |
||
27 | * |
||
28 | */ |
||
29 | public function testAssertIssueAccessToken() |
||
35 | |||
36 | /** |
||
37 | * |
||
38 | */ |
||
39 | public function testAssertValidateAccessToken() |
||
45 | |||
46 | /** |
||
47 | * |
||
48 | */ |
||
49 | public function testAssertGetResourceOwnerId() |
||
56 | |||
57 | /** |
||
58 | * |
||
59 | */ |
||
60 | public function testAssertGetResourceOwnerType() |
||
67 | |||
68 | /** |
||
69 | * |
||
70 | */ |
||
71 | public function testAssertGetClientId() |
||
78 | } |
||
79 |