From 2b06032183dd9cc36b15442d8b11336383727c69 Mon Sep 17 00:00:00 2001 From: jwage Date: Fri, 8 Feb 2008 19:35:27 +0000 Subject: [PATCH] Initial entry of new test structure. --- tests/AllTests.php | 33 +++++++++++++++++++++++++++++++ tests/Dbal/AllTests.php | 31 +++++++++++++++++++++++++++++ tests/Dbal/Component/AllTests.php | 31 +++++++++++++++++++++++++++++ tests/Dbal/Component/TestTest.php | 10 ++++++++++ tests/Orm/AllTests.php | 31 +++++++++++++++++++++++++++++ tests/Orm/Component/AllTests.php | 31 +++++++++++++++++++++++++++++ tests/Orm/Component/TestTest.php | 10 ++++++++++ tests/lib/Doctrine_TestCase.php | 7 +++++++ tests/lib/Doctrine_TestSuite.php | 7 +++++++ 9 files changed, 191 insertions(+) create mode 100644 tests/AllTests.php create mode 100644 tests/Dbal/AllTests.php create mode 100644 tests/Dbal/Component/AllTests.php create mode 100644 tests/Dbal/Component/TestTest.php create mode 100644 tests/Orm/AllTests.php create mode 100644 tests/Orm/Component/AllTests.php create mode 100644 tests/Orm/Component/TestTest.php create mode 100644 tests/lib/Doctrine_TestCase.php create mode 100644 tests/lib/Doctrine_TestSuite.php diff --git a/tests/AllTests.php b/tests/AllTests.php new file mode 100644 index 000000000..79ff0b7bc --- /dev/null +++ b/tests/AllTests.php @@ -0,0 +1,33 @@ +addTest(Dbal_AllTests::suite()); + $suite->addTest(Orm_AllTests::suite()); + + return $suite; + } +} + +if (PHPUnit_MAIN_METHOD == 'AllTests::main') { + AllTests::main(); +} \ No newline at end of file diff --git a/tests/Dbal/AllTests.php b/tests/Dbal/AllTests.php new file mode 100644 index 000000000..72394ec4e --- /dev/null +++ b/tests/Dbal/AllTests.php @@ -0,0 +1,31 @@ +addTest(Dbal_Component_AllTests::suite()); + + return $suite; + } +} + +if (PHPUnit_MAIN_METHOD == 'Dbal_AllTests::main') { + Dbal_AllTests::main(); +} \ No newline at end of file diff --git a/tests/Dbal/Component/AllTests.php b/tests/Dbal/Component/AllTests.php new file mode 100644 index 000000000..d92bd2155 --- /dev/null +++ b/tests/Dbal/Component/AllTests.php @@ -0,0 +1,31 @@ +addTestSuite('Dbal_Component_TestTest'); + + return $suite; + } +} + +if (PHPUnit_MAIN_METHOD == 'Dbal_Component_AllTests::main') { + Dbal_Component_AllTests::main(); +} \ No newline at end of file diff --git a/tests/Dbal/Component/TestTest.php b/tests/Dbal/Component/TestTest.php new file mode 100644 index 000000000..9805c75e5 --- /dev/null +++ b/tests/Dbal/Component/TestTest.php @@ -0,0 +1,10 @@ +assertEquals(0, 0); + } +} \ No newline at end of file diff --git a/tests/Orm/AllTests.php b/tests/Orm/AllTests.php new file mode 100644 index 000000000..d3dd27cd2 --- /dev/null +++ b/tests/Orm/AllTests.php @@ -0,0 +1,31 @@ +addTest(Orm_Component_AllTests::suite()); + + return $suite; + } +} + +if (PHPUnit_MAIN_METHOD == 'Orm_AllTests::main') { + Orm_AllTests::main(); +} \ No newline at end of file diff --git a/tests/Orm/Component/AllTests.php b/tests/Orm/Component/AllTests.php new file mode 100644 index 000000000..3075ef6ea --- /dev/null +++ b/tests/Orm/Component/AllTests.php @@ -0,0 +1,31 @@ +addTestSuite('Orm_Component_TestTest'); + + return $suite; + } +} + +if (PHPUnit_MAIN_METHOD == 'Dbal_Component_AllTests::main') { + Dbal_Component_AllTests::main(); +} \ No newline at end of file diff --git a/tests/Orm/Component/TestTest.php b/tests/Orm/Component/TestTest.php new file mode 100644 index 000000000..6eff072c6 --- /dev/null +++ b/tests/Orm/Component/TestTest.php @@ -0,0 +1,10 @@ +assertEquals(0, 0); + } +} \ No newline at end of file diff --git a/tests/lib/Doctrine_TestCase.php b/tests/lib/Doctrine_TestCase.php new file mode 100644 index 000000000..8f6627ed4 --- /dev/null +++ b/tests/lib/Doctrine_TestCase.php @@ -0,0 +1,7 @@ +