for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class PDOFirebirdTest
*
* @filesource PDOFirebirdTest.php
* @created 29.05.2017
* @package chillerlan\DatabaseTest\Drivers
* @author Smiley <[email protected]>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\DatabaseTest\Drivers;
use chillerlan\Database\Drivers\PDO\PDOFirebirdDriver;
class PDOFirebirdTest extends DriverTestAbstract{
protected $driver = PDOFirebirdDriver::class;
protected $envVar = 'DB_FIREBIRD_';
protected $SQL_RAW_TRUNCATE = 'RECREATE TABLE test (id INTEGER NOT NULL, hash VARCHAR(32) NOT NULL)';
protected $SQL_RAW_DROP = 'RECREATE TABLE test (id INTEGER NOT NULL, hash VARCHAR(32) NOT NULL)';
protected $SQL_RAW_CREATE = 'RECREATE TABLE test (id INTEGER NOT NULL, hash VARCHAR(32) NOT NULL)';
protected $SQL_INDEX_COL = 'ID';
protected $SQL_DATA_COL = 'HASH';
protected $SQL_ESCAPED = "'''\\\\'''''";
protected $SQL_QUOTES = ['\'', '\''];
protected $SQL_DIALECT = 'firebird';
public function setUp(){
$this->markTestIncomplete('use the vagrant box...');
}