1 | <?php |
||
24 | final class ApiAccessTokenFixtureTest extends \PHPUnit_Framework_TestCase |
||
25 | { |
||
26 | use ConfigurationTestCaseTrait; |
||
27 | |||
28 | /** |
||
29 | * @test |
||
30 | */ |
||
31 | public function access_token_can_be_generated_randomly(): void |
||
35 | |||
36 | /** |
||
37 | * @test |
||
38 | */ |
||
39 | public function access_token_can_be_created_with_custom_random_id(): void |
||
45 | |||
46 | /** |
||
47 | * @test |
||
48 | */ |
||
49 | public function access_token_can_be_created_with_custom_secret(): void |
||
55 | |||
56 | /** |
||
57 | * @test |
||
58 | */ |
||
59 | public function access_token_can_be_created_with_grant_type(): void |
||
65 | |||
66 | /** |
||
67 | * @test |
||
68 | */ |
||
69 | public function access_token_can_be_created_with_expires_at(): void |
||
75 | |||
76 | /** |
||
77 | * {@inheritdoc} |
||
78 | */ |
||
79 | protected function getConfiguration(): ApiAccessTokenFixture |
||
86 | } |
||
87 |