Total Complexity | 5 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class DriverTest extends AbstractSQLServerDriverTest |
||
10 | { |
||
11 | public function testReturnsName() |
||
12 | { |
||
13 | self::assertSame('pdo_sqlsrv', $this->driver->getName()); |
||
14 | } |
||
15 | |||
16 | protected function createDriver() |
||
17 | { |
||
18 | return new Driver(); |
||
19 | } |
||
20 | |||
21 | public function testConnectionOptions() |
||
32 | } |
||
33 | |||
34 | public function testDriverOptions() |
||
43 | } |
||
44 | |||
45 | private function getConnection($driverOptions) { |
||
57 |