1 | <?php |
||
24 | class OAuthCredentialsFixtureTest extends \PHPUnit_Framework_TestCase |
||
25 | { |
||
26 | use ConfigurationTestCaseTrait; |
||
27 | |||
28 | /** |
||
29 | * @test |
||
30 | */ |
||
31 | public function oauth_credentials_can_be_generated_randomly(): void |
||
35 | |||
36 | /** |
||
37 | * @test |
||
38 | */ |
||
39 | public function oauth_credentials_can_be_created_with_custom_random_id(): void |
||
45 | |||
46 | /** |
||
47 | * @test |
||
48 | */ |
||
49 | public function oauth_credentials_can_be_created_with_custom_secret(): void |
||
55 | |||
56 | /** |
||
57 | * @test |
||
58 | */ |
||
59 | public function oauth_credentials_can_be_created_with_grant_type(): void |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | protected function getConfiguration(): ApiClientFixture |
||
78 | } |
||
79 |