Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 3 |
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 | |||
36 | $this->assertInstanceOf(ConnectionInterface::class, $connection); |
||
37 | |||
38 | // $result = $connection->expr('foo'); |
||
39 | // |
||
40 | // $this->assertInstanceOf(ResponseInterface::class, $result); |
||
41 | // $this->assertEquals('foo', $result->getData()[0]); |
||
42 | } |
||
43 | |||
56 |