Added at least one test to every test suite.

This commit is contained in:
Timothy Warren 2012-03-12 11:17:49 -04:00
parent 232de2f92c
commit 1371ea7af5
7 changed files with 30 additions and 0 deletions

View File

@ -18,4 +18,9 @@ class MySQLQBTest extends UnitTestCase {
{
}
function TestExists()
{
$this->assertTrue(in_array('mysql', pdo_drivers()));
}
}

View File

@ -23,5 +23,10 @@ class MySQLTest extends UnitTestCase {
{
}
function TestExists()
{
$this->assertTrue(in_array('mysql', pdo_drivers()));
}
}

View File

@ -18,4 +18,9 @@ class ODBCQBTest extends UnitTestCase {
{
}
function TestExists()
{
$this->assertTrue(in_array('odbc', pdo_drivers()));
}
}

View File

@ -23,4 +23,9 @@ class ODBCTest extends UnitTestCase {
{
}
function TestExists()
{
$this->assertTrue(in_array('odbc', pdo_drivers()));
}
}

View File

@ -18,4 +18,9 @@ class PgSQLQBTest extends UnitTestCase {
{
}
function TestExists()
{
$this->assertTrue(in_array('pgsql', pdo_drivers()));
}
}

View File

@ -29,4 +29,9 @@ class PgTest extends UnitTestCase {
{
parent::__construct();
}
function TestExists()
{
$this->assertTrue(in_array('pgsql', pdo_drivers()));
}
}

Binary file not shown.