1 | <?php |
||
10 | class InfluxDbBundleTest extends \PHPUnit_Framework_TestCase |
||
11 | { |
||
12 | |||
13 | public function test_get_container_extension() |
||
14 | { |
||
15 | |||
16 | $bundle = new InfluxDbBundle(); |
||
17 | |||
18 | $extension = $bundle->getContainerExtension(); |
||
19 | |||
20 | $this->assertInstanceOf(Bundle::class, $bundle); |
||
21 | $this->assertInstanceOf(InfluxDbExtension::class, $extension); |
||
22 | |||
23 | } |
||
24 | |||
25 | } |
||
26 |