Completed
Push — master ( 6c95d6...0ca878 )
by smiley
02:15
created

PDOFirebirdTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 1
dl 0
loc 18
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 3 1
1
<?php
2
/**
3
 * Class PDOFirebirdTest
4
 *
5
 * @filesource   PDOFirebirdTest.php
6
 * @created      29.05.2017
7
 * @package      chillerlan\DatabaseTest\Drivers
8
 * @author       Smiley <[email protected]>
9
 * @copyright    2017 Smiley
10
 * @license      MIT
11
 */
12
13
namespace chillerlan\DatabaseTest\Drivers;
14
15
use chillerlan\Database\Drivers\PDO\PDOFirebirdDriver;
16
17
class PDOFirebirdTest extends DriverTestAbstract{
18
19
	protected $driver = PDOFirebirdDriver::class;
20
	protected $envVar = 'DB_FIREBIRD_';
21
22
	protected $SQL_RAW_TRUNCATE   = 'RECREATE TABLE test (id INTEGER NOT NULL, hash VARCHAR(32) NOT NULL)';
23
	protected $SQL_RAW_DROP       = 'RECREATE TABLE test (id INTEGER NOT NULL, hash VARCHAR(32) NOT NULL)';
24
	protected $SQL_RAW_CREATE     = 'RECREATE TABLE test (id INTEGER NOT NULL, hash VARCHAR(32) NOT NULL)';
25
	protected $SQL_INDEX_COL      = 'ID';
26
	protected $SQL_DATA_COL       = 'HASH';
27
	protected $SQL_ESCAPED = "'''\\\\'''''";
28
	protected $SQL_QUOTES = ['\'', '\''];
29
	protected $SQL_DIALECT = 'firebird';
30
31
	public function setUp(){
32
		$this->markTestIncomplete('use the vagrant box...');
33
	}
34
}
35