Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function testConnect() |
||
32 | { |
||
33 | /** @var ConnectionInterface $connection */ |
||
34 | $connection = $this->createConnection('phpunit_default')->connect(); |
||
35 | $result = $connection->expr('foo'); |
||
36 | |||
37 | $this->assertInstanceOf(ResponseInterface::class, $result); |
||
38 | $this->assertEquals('foo', $result->getData()[0]); |
||
39 | } |
||
40 | |||
53 |