Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 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 | 'baseUrl' => 'https://api-sandbox.gocardless.com/', |
||
25 | 'gocardlessVersion' => '2015-07-06', |
||
26 | 'webhook_secret' => 'BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB', |
||
27 | 'token' => 'CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC', |
||
28 | ]; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @test |
||
33 | */ |
||
34 | public function verify_that_after_loading_all_bundle_services_and_params_are_set() |
||
43 | } |
||
44 | } |
||
45 |