<?php /** * OpenSQLManager * * Free Database manager for Open Source Databases * * @author Timothy J. Warren * @copyright Copyright (c) 2012 - 2013 * @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 UnitTestCase { /** * __construct function. * * @access public * @return void */ public function __construct() { parent::__construct(); } // -------------------------------------------------------------------------- /** * TestPHPVersion function. * * @access public * @return void */ public function TestPHPVersion() { $this->assertTrue(version_compare(PHP_VERSION, "5.2", "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( 'mysql', 'pgsql', 'odbc', 'sqlite', ); $drivers = PDO::getAvailableDrivers(); $num_supported = count(array_intersect($drivers, $supported)); $this->assertTrue($num_supported > 0); } }