Query/tests/core/core_test.php

62 lines
1.2 KiB
PHP

<?php
/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012 - 2014
* @link https://github.com/aviat4ion/OpenSQLManager
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* CoreTest class - Compatibility and core functionality tests
*
* @extends UnitTestCase
*/
class CoreTest extends Query_TestCase {
/**
* TestPHPVersion function.
*
* @access public
* @return void
*/
public function testPHPVersion()
{
$this->assertTrue(version_compare(PHP_VERSION, "5.3", "ge"));
}
// --------------------------------------------------------------------------
/**
* TestHasPDO function.
*
* @access public
* @return void
*/
public function testHasPDO()
{
// PDO class exists
$this->assertTrue(class_exists('PDO'));
// Make sure at least one of the supported drivers is enabled
$supported = array(
'firebird',
'mysql',
'pgsql',
'odbc',
'sqlite',
);
$drivers = PDO::getAvailableDrivers();
$num_supported = count(array_intersect($drivers, $supported));
$this->assertTrue($num_supported > 0);
}
}