Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class GoCardlessEnterpriseExtensionTest extends AbstractExtensionTestCase |
||
13 | { |
||
14 | protected function getContainerExtensions(): array |
||
18 | ]; |
||
19 | } |
||
20 | |||
21 | protected function getMinimalConfiguration(): array |
||
22 | { |
||
23 | return [ |
||
24 | 'gocardless_enterprise' => [ |
||
25 | 'baseUrl' => 'https://api-sandbox.gocardless.com/', |
||
26 | 'gocardlessVersion' => '2015-07-06', |
||
27 | 'webhook_secret' => 'BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB', |
||
28 | 'token' => 'CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC', |
||
29 | ], |
||
30 | ]; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @test |
||
35 | */ |
||
36 | public function verify_that_after_loading_all_bundle_services_and_params_are_set() |
||
45 | } |
||
46 | } |
||
47 |