From a0c1692a096234e882170da9511e1d1032977dbd Mon Sep 17 00:00:00 2001 From: zYne Date: Wed, 27 Dec 2006 21:32:09 +0000 Subject: [PATCH] added Import driver test case skeletons --- tests/Import/FirebirdTestCase.php | 34 +++++++++++++++++++++++++++++++ tests/Import/InformixTestCase.php | 34 +++++++++++++++++++++++++++++++ tests/Import/MssqlTestCase.php | 34 +++++++++++++++++++++++++++++++ tests/Import/MysqlTestCase.php | 34 +++++++++++++++++++++++++++++++ tests/Import/OracleTestCase.php | 34 +++++++++++++++++++++++++++++++ tests/Import/PgsqlTestCase.php | 34 +++++++++++++++++++++++++++++++ tests/Import/SqliteTestCase.php | 34 +++++++++++++++++++++++++++++++ 7 files changed, 238 insertions(+) create mode 100644 tests/Import/FirebirdTestCase.php create mode 100644 tests/Import/InformixTestCase.php create mode 100644 tests/Import/MssqlTestCase.php create mode 100644 tests/Import/MysqlTestCase.php create mode 100644 tests/Import/OracleTestCase.php create mode 100644 tests/Import/PgsqlTestCase.php create mode 100644 tests/Import/SqliteTestCase.php diff --git a/tests/Import/FirebirdTestCase.php b/tests/Import/FirebirdTestCase.php new file mode 100644 index 000000000..4d8e319e7 --- /dev/null +++ b/tests/Import/FirebirdTestCase.php @@ -0,0 +1,34 @@ +. + */ + +/** + * Doctrine_Import_Firebird_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Import_Firebird_TestCase extends Doctrine_UnitTestCase { +} diff --git a/tests/Import/InformixTestCase.php b/tests/Import/InformixTestCase.php new file mode 100644 index 000000000..0408c8344 --- /dev/null +++ b/tests/Import/InformixTestCase.php @@ -0,0 +1,34 @@ +. + */ + +/** + * Doctrine_Import_Informix_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Import_Informix_TestCase extends Doctrine_UnitTestCase { +} diff --git a/tests/Import/MssqlTestCase.php b/tests/Import/MssqlTestCase.php new file mode 100644 index 000000000..17cc6a27c --- /dev/null +++ b/tests/Import/MssqlTestCase.php @@ -0,0 +1,34 @@ +. + */ + +/** + * Doctrine_Import_Mssql_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Import_Mssql_TestCase extends Doctrine_UnitTestCase { +} diff --git a/tests/Import/MysqlTestCase.php b/tests/Import/MysqlTestCase.php new file mode 100644 index 000000000..e70c766a3 --- /dev/null +++ b/tests/Import/MysqlTestCase.php @@ -0,0 +1,34 @@ +. + */ + +/** + * Doctrine_Import_Mysql_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Import_Mysql_TestCase extends Doctrine_UnitTestCase { +} diff --git a/tests/Import/OracleTestCase.php b/tests/Import/OracleTestCase.php new file mode 100644 index 000000000..c26c9231a --- /dev/null +++ b/tests/Import/OracleTestCase.php @@ -0,0 +1,34 @@ +. + */ + +/** + * Doctrine_Import_Oracle_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Import_Oracle_TestCase extends Doctrine_UnitTestCase { +} diff --git a/tests/Import/PgsqlTestCase.php b/tests/Import/PgsqlTestCase.php new file mode 100644 index 000000000..0146b7337 --- /dev/null +++ b/tests/Import/PgsqlTestCase.php @@ -0,0 +1,34 @@ +. + */ + +/** + * Doctrine_Import_Pgsql_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Import_Pgsql_TestCase extends Doctrine_UnitTestCase { +} diff --git a/tests/Import/SqliteTestCase.php b/tests/Import/SqliteTestCase.php new file mode 100644 index 000000000..a62b774ac --- /dev/null +++ b/tests/Import/SqliteTestCase.php @@ -0,0 +1,34 @@ +. + */ + +/** + * Doctrine_Import_Sqlite_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Import_Sqlite_TestCase extends Doctrine_UnitTestCase { +}