Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
25 | class SymfonyBCServiceTest extends AbstractTestCase { |
||
26 | |||
27 | /** |
||
28 | * Tests getSession() |
||
29 | * |
||
30 | * @return void |
||
31 | * @throws Throwable Throws an exception if an error occurs. |
||
32 | */ |
||
33 | public function testGetSession(): void { |
||
34 | |||
35 | $obj = new SymfonyBCService($this->containerBuilder); |
||
36 | |||
37 | $this->assertSame($this->session, $obj->getSession()); |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * Tests __construct() |
||
42 | * |
||
43 | * @return void |
||
44 | */ |
||
45 | public function test__construct(): void { |
||
54 | } |
||
55 | } |
||
56 |