Added at least one test to every test suite.
This commit is contained in:
parent
232de2f92c
commit
1371ea7af5
@ -18,4 +18,9 @@ class MySQLQBTest extends UnitTestCase {
|
|||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function TestExists()
|
||||||
|
{
|
||||||
|
$this->assertTrue(in_array('mysql', pdo_drivers()));
|
||||||
|
}
|
||||||
}
|
}
|
@ -23,5 +23,10 @@ class MySQLTest extends UnitTestCase {
|
|||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function TestExists()
|
||||||
|
{
|
||||||
|
$this->assertTrue(in_array('mysql', pdo_drivers()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,4 +18,9 @@ class ODBCQBTest extends UnitTestCase {
|
|||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function TestExists()
|
||||||
|
{
|
||||||
|
$this->assertTrue(in_array('odbc', pdo_drivers()));
|
||||||
|
}
|
||||||
}
|
}
|
@ -23,4 +23,9 @@ class ODBCTest extends UnitTestCase {
|
|||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function TestExists()
|
||||||
|
{
|
||||||
|
$this->assertTrue(in_array('odbc', pdo_drivers()));
|
||||||
|
}
|
||||||
}
|
}
|
@ -18,4 +18,9 @@ class PgSQLQBTest extends UnitTestCase {
|
|||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function TestExists()
|
||||||
|
{
|
||||||
|
$this->assertTrue(in_array('pgsql', pdo_drivers()));
|
||||||
|
}
|
||||||
}
|
}
|
@ -29,4 +29,9 @@ class PgTest extends UnitTestCase {
|
|||||||
{
|
{
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function TestExists()
|
||||||
|
{
|
||||||
|
$this->assertTrue(in_array('pgsql', pdo_drivers()));
|
||||||
|
}
|
||||||
}
|
}
|
Binary file not shown.
Reference in New Issue
Block a user