1 | <?php |
||
10 | class OpenExchangeRatesServiceTest extends WebTestCase |
||
11 | { |
||
12 | /** |
||
13 | * @var Application|null |
||
14 | */ |
||
15 | protected static $application = null; |
||
16 | |||
17 | /** |
||
18 | * @var KernelInterface|null |
||
19 | */ |
||
20 | protected static $kernel = null; |
||
21 | |||
22 | /** |
||
23 | * @var OpenExchangeRatesService |
||
24 | */ |
||
25 | protected $service; |
||
26 | |||
27 | /** |
||
28 | * Get service configuration |
||
29 | * |
||
30 | * @return array |
||
31 | */ |
||
32 | protected function getServiceConfig() |
||
38 | |||
39 | /** |
||
40 | * Set up test |
||
41 | */ |
||
42 | public function setUp() |
||
49 | |||
50 | /** |
||
51 | * Checks if the app can get the service from the container |
||
52 | */ |
||
53 | public function testServiceIsGettable() |
||
60 | } |