From a38a1f5188a4b521067137676b0adcac06308dcb Mon Sep 17 00:00:00 2001 From: romanb Date: Wed, 18 Feb 2009 10:26:12 +0000 Subject: [PATCH] Simplified first platform test. Further platform tests should follow the same scheme. --- tests/Doctrine/Tests/DBAL/AllTests.php | 6 +++--- ...ctPlatformTest.php => SqlitePlatformTest.php} | 16 +++++----------- 2 files changed, 8 insertions(+), 14 deletions(-) rename tests/Doctrine/Tests/DBAL/Platforms/{AbstractPlatformTest.php => SqlitePlatformTest.php} (75%) diff --git a/tests/Doctrine/Tests/DBAL/AllTests.php b/tests/Doctrine/Tests/DBAL/AllTests.php index 032ead8dc..4a777eeb2 100644 --- a/tests/Doctrine/Tests/DBAL/AllTests.php +++ b/tests/Doctrine/Tests/DBAL/AllTests.php @@ -6,7 +6,7 @@ use Doctrine\Tests\DBAL\Component; use Doctrine\Tests\DBAL\Ticker; if (!defined('PHPUnit_MAIN_METHOD')) { - define('PHPUnit_MAIN_METHOD', 'Dbal_AllTests::main'); + define('PHPUnit_MAIN_METHOD', 'Dbal_Platforms_AllTests::main'); } require_once __DIR__ . '/../TestInit.php'; @@ -22,12 +22,12 @@ class AllTests { $suite = new \Doctrine\Tests\DbalTestSuite('Doctrine DBAL'); - $suite->addTestSuite('Doctrine\Tests\DBAL\Platforms\AbstractPlatformTest'); + $suite->addTestSuite('Doctrine\Tests\DBAL\Platforms\SqlitePlatformTest'); return $suite; } } -if (PHPUnit_MAIN_METHOD == 'Dbal_AllTests::main') { +if (PHPUnit_MAIN_METHOD == 'Dbal_Platforms_AllTests::main') { AllTests::main(); } \ No newline at end of file diff --git a/tests/Doctrine/Tests/DBAL/Platforms/AbstractPlatformTest.php b/tests/Doctrine/Tests/DBAL/Platforms/SqlitePlatformTest.php similarity index 75% rename from tests/Doctrine/Tests/DBAL/Platforms/AbstractPlatformTest.php rename to tests/Doctrine/Tests/DBAL/Platforms/SqlitePlatformTest.php index 9dbe3075a..9808bc4a1 100644 --- a/tests/Doctrine/Tests/DBAL/Platforms/AbstractPlatformTest.php +++ b/tests/Doctrine/Tests/DBAL/Platforms/SqlitePlatformTest.php @@ -2,23 +2,17 @@ namespace Doctrine\Tests\DBAL\Platforms; +use Doctrine\DBAL\Platforms\SqlitePlatform; + require_once __DIR__ . '/../../TestInit.php'; -class AbstractPlatformTest extends \Doctrine\Tests\DbalTestCase +class SqlitePlatformTest extends \Doctrine\Tests\DbalTestCase { - private $_conn; + private $_platform; public function setUp() { - $this->_config = new \Doctrine\DBAL\Configuration; - $this->_eventManager = new \Doctrine\Common\EventManager; - $options = array( - 'driver' => 'pdo_sqlite', - 'memory' => true - ); - $this->_conn = \Doctrine\DBAL\DriverManager::getConnection($options, $this->_config, $this->_eventManager); - $this->_platform = $this->_conn->getDatabasePlatform(); - $this->_sm = $this->_conn->getSchemaManager(); + $this->_platform = new SqlitePlatform; } public function testGetCreateTableSql()