Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
edcdf441
Commit
edcdf441
authored
May 02, 2014
by
jeroendedauw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused imports
parent
bb0b4685
Changes
39
Hide whitespace changes
Inline
Side-by-side
Showing
39 changed files
with
53 additions
and
92 deletions
+53
-92
ConnectionTest.php
tests/Doctrine/Tests/DBAL/ConnectionTest.php
+2
-2
MysqlSessionInitTest.php
tests/Doctrine/Tests/DBAL/Events/MysqlSessionInitTest.php
+2
-2
OracleSessionInitTest.php
tests/Doctrine/Tests/DBAL/Events/OracleSessionInitTest.php
+2
-2
SQLSessionInitTest.php
tests/Doctrine/Tests/DBAL/Events/SQLSessionInitTest.php
+2
-2
BlobTest.php
tests/Doctrine/Tests/DBAL/Functional/BlobTest.php
+0
-1
DataAccessTest.php
tests/Doctrine/Tests/DBAL/Functional/DataAccessTest.php
+1
-1
ExceptionTest.php
tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php
+0
-1
MasterSlaveConnectionTest.php
...trine/Tests/DBAL/Functional/MasterSlaveConnectionTest.php
+1
-1
ModifyLimitQueryTest.php
...s/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php
+0
-4
NamedParametersTest.php
tests/Doctrine/Tests/DBAL/Functional/NamedParametersTest.php
+1
-1
PortabilityTest.php
tests/Doctrine/Tests/DBAL/Functional/PortabilityTest.php
+1
-2
ResultCacheTest.php
tests/Doctrine/Tests/DBAL/Functional/ResultCacheTest.php
+0
-1
MySqlSchemaManagerTest.php
...e/Tests/DBAL/Functional/Schema/MySqlSchemaManagerTest.php
+1
-1
PostgreSqlSchemaManagerTest.php
...ts/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php
+1
-1
SQLServerSchemaManagerTest.php
...sts/DBAL/Functional/Schema/SQLServerSchemaManagerTest.php
+2
-2
SchemaManagerFunctionalTestCase.php
...BAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
+3
-5
TemporaryTableTest.php
tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php
+2
-3
DBAL752Test.php
tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL752Test.php
+0
-2
AbstractMySQLPlatformTestCase.php
...ne/Tests/DBAL/Platforms/AbstractMySQLPlatformTestCase.php
+1
-3
AbstractPostgreSqlPlatformTestCase.php
...sts/DBAL/Platforms/AbstractPostgreSqlPlatformTestCase.php
+0
-1
OraclePlatformTest.php
tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php
+0
-1
ReservedKeywordsValidatorTest.php
...ne/Tests/DBAL/Platforms/ReservedKeywordsValidatorTest.php
+0
-2
SQLAnywhere16PlatformTest.php
...ctrine/Tests/DBAL/Platforms/SQLAnywhere16PlatformTest.php
+0
-1
SqlitePlatformTest.php
tests/Doctrine/Tests/DBAL/Platforms/SqlitePlatformTest.php
+3
-3
ExpressionBuilderTest.php
...ine/Tests/DBAL/Query/Expression/ExpressionBuilderTest.php
+2
-2
QueryBuilderTest.php
tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php
+2
-2
ColumnTest.php
tests/Doctrine/Tests/DBAL/Schema/ColumnTest.php
+0
-2
ComparatorTest.php
tests/Doctrine/Tests/DBAL/Schema/ComparatorTest.php
+12
-12
IndexTest.php
tests/Doctrine/Tests/DBAL/Schema/IndexTest.php
+0
-3
MySqlSchemaManagerTest.php
tests/Doctrine/Tests/DBAL/Schema/MySqlSchemaManagerTest.php
+0
-3
MySQLSchemaTest.php
.../Doctrine/Tests/DBAL/Schema/Platforms/MySQLSchemaTest.php
+0
-3
SchemaDiffTest.php
tests/Doctrine/Tests/DBAL/Schema/SchemaDiffTest.php
+4
-9
SchemaTest.php
tests/Doctrine/Tests/DBAL/Schema/SchemaTest.php
+1
-1
SequenceTest.php
tests/Doctrine/Tests/DBAL/Schema/SequenceTest.php
+1
-1
SqliteSchemaManagerTest.php
tests/Doctrine/Tests/DBAL/Schema/SqliteSchemaManagerTest.php
+1
-1
TableTest.php
tests/Doctrine/Tests/DBAL/Schema/TableTest.php
+3
-4
CreateSchemaSqlCollectorTest.php
...ests/DBAL/Schema/Visitor/CreateSchemaSqlCollectorTest.php
+1
-1
RemoveNamespacedAssetsTest.php
.../Tests/DBAL/Schema/Visitor/RemoveNamespacedAssetsTest.php
+1
-1
SchemaSqlCollectorTest.php
...rine/Tests/DBAL/Schema/Visitor/SchemaSqlCollectorTest.php
+0
-2
No files found.
tests/Doctrine/Tests/DBAL/ConnectionTest.php
View file @
edcdf441
...
...
@@ -4,12 +4,12 @@ namespace Doctrine\Tests\DBAL;
require_once
__DIR__
.
'/../TestInit.php'
;
use
Doctrine\DBAL\Connection
;
use
Doctrine\Common\EventManager
;
use
Doctrine\DBAL\Configuration
;
use
Doctrine\DBAL\Connection
;
use
Doctrine\DBAL\Events
;
use
Doctrine\Tests\Mocks\DriverMock
;
use
Doctrine\Tests\Mocks\DriverConnectionMock
;
use
Doctrine\Tests\Mocks\DriverMock
;
class
ConnectionTest
extends
\Doctrine\Tests\DbalTestCase
{
...
...
tests/Doctrine/Tests/DBAL/Events/MysqlSessionInitTest.php
View file @
edcdf441
...
...
@@ -2,10 +2,10 @@
namespace
Doctrine\Tests\DBAL\Events
;
use
Doctrine\Tests\DbalTestCase
;
use
Doctrine\DBAL\Event\Listeners\MysqlSessionInit
;
use
Doctrine\DBAL\Event\ConnectionEventArgs
;
use
Doctrine\DBAL\Event\Listeners\MysqlSessionInit
;
use
Doctrine\DBAL\Events
;
use
Doctrine\Tests\DbalTestCase
;
require_once
__DIR__
.
'/../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Events/OracleSessionInitTest.php
View file @
edcdf441
...
...
@@ -2,10 +2,10 @@
namespace
Doctrine\Tests\DBAL\Events
;
use
Doctrine\Tests\DbalTestCase
;
use
Doctrine\DBAL\Event\Listeners\OracleSessionInit
;
use
Doctrine\DBAL\Event\ConnectionEventArgs
;
use
Doctrine\DBAL\Event\Listeners\OracleSessionInit
;
use
Doctrine\DBAL\Events
;
use
Doctrine\Tests\DbalTestCase
;
require_once
__DIR__
.
'/../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Events/SQLSessionInitTest.php
View file @
edcdf441
...
...
@@ -2,10 +2,10 @@
namespace
Doctrine\Tests\DBAL\Events
;
use
Doctrine\Tests\DbalTestCase
;
use
Doctrine\DBAL\Event\Listeners\SQLSessionInit
;
use
Doctrine\DBAL\Event\ConnectionEventArgs
;
use
Doctrine\DBAL\Event\Listeners\SQLSessionInit
;
use
Doctrine\DBAL\Events
;
use
Doctrine\Tests\DbalTestCase
;
require_once
__DIR__
.
'/../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Functional/BlobTest.php
View file @
edcdf441
...
...
@@ -3,7 +3,6 @@
namespace
Doctrine\Tests\DBAL\Functional
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Connection
;
use
PDO
;
require_once
__DIR__
.
'/../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Functional/DataAccessTest.php
View file @
edcdf441
...
...
@@ -2,9 +2,9 @@
namespace
Doctrine\Tests\DBAL\Functional
;
use
Doctrine\DBAL\Connection
;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Connection
;
use
PDO
;
require_once
__DIR__
.
'/../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Functional/ExceptionTest.php
View file @
edcdf441
<?php
namespace
Doctrine\Tests\DBAL\Functional
;
use
Doctrine\DBAL\DBALException
;
use
Doctrine\DBAL\Driver\ExceptionConverterDriver
;
class
ExceptionTest
extends
\Doctrine\Tests\DbalFunctionalTestCase
...
...
tests/Doctrine/Tests/DBAL/Functional/MasterSlaveConnectionTest.php
View file @
edcdf441
...
...
@@ -2,8 +2,8 @@
namespace
Doctrine\Tests\DBAL\Functional
;
use
Doctrine\Tests\DbalFunctionalTestCase
;
use
Doctrine\DBAL\DriverManager
;
use
Doctrine\Tests\DbalFunctionalTestCase
;
/**
* @group DBAL-20
...
...
tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php
View file @
edcdf441
...
...
@@ -2,10 +2,6 @@
namespace
Doctrine\Tests\DBAL\Functional
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Connection
;
use
PDO
;
require_once
__DIR__
.
'/../../TestInit.php'
;
class
ModifyLimitQueryTest
extends
\Doctrine\Tests\DbalFunctionalTestCase
...
...
tests/Doctrine/Tests/DBAL/Functional/NamedParametersTest.php
View file @
edcdf441
...
...
@@ -3,7 +3,7 @@
namespace
Doctrine\Tests\DBAL\Functional\Ticket
;
use
Doctrine\DBAL\Connection
;
use
\
PDO
;
use
PDO
;
require_once
__DIR__
.
'/../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Functional/PortabilityTest.php
View file @
edcdf441
...
...
@@ -2,11 +2,10 @@
namespace
Doctrine\Tests\DBAL\Functional
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Connection
;
use
Doctrine\DBAL\DriverManager
;
use
PDO
;
use
Doctrine\DBAL\Portability\Connection
as
ConnectionPortability
;
use
PDO
;
require_once
__DIR__
.
'/../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Functional/ResultCacheTest.php
View file @
edcdf441
<?php
namespace
Doctrine\Tests\DBAL\Functional
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Cache\QueryCacheProfile
;
use
PDO
;
...
...
tests/Doctrine/Tests/DBAL/Functional/Schema/MySqlSchemaManagerTest.php
View file @
edcdf441
...
...
@@ -3,8 +3,8 @@
namespace
Doctrine\Tests\DBAL\Functional\Schema
;
use
Doctrine\DBAL\Schema\Comparator
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Types\Type
;
require_once
__DIR__
.
'/../../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Functional/Schema/PostgreSqlSchemaManagerTest.php
View file @
edcdf441
...
...
@@ -2,9 +2,9 @@
namespace
Doctrine\Tests\DBAL\Functional\Schema
;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
use
Doctrine\DBAL\Schema
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
require_once
__DIR__
.
'/../../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Functional/Schema/SQLServerSchemaManagerTest.php
View file @
edcdf441
...
...
@@ -2,10 +2,10 @@
namespace
Doctrine\Tests\DBAL\Functional\Schema
;
use
Doctrine\DBAL\Schema\Column
;
use
Doctrine\DBAL\Schema\ColumnDiff
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\TableDiff
;
use
Doctrine\DBAL\Schema\ColumnDiff
;
use
Doctrine\DBAL\Schema\Column
;
use
Doctrine\DBAL\Types\Type
;
class
SQLServerSchemaManagerTest
extends
SchemaManagerFunctionalTestCase
...
...
tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
View file @
edcdf441
...
...
@@ -2,13 +2,11 @@
namespace
Doctrine\Tests\DBAL\Functional\Schema
;
use
Doctrine\DBAL\Schema\Comparator
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Types\Type
,
Doctrine\DBAL\Schema\AbstractSchemaManager
;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
use
Doctrine\Common\EventManager
;
use
Doctrine\DBAL\Events
;
use
Doctrine\DBAL\Schema\Comparator
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Types\Type
;
require_once
__DIR__
.
'/../../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php
View file @
edcdf441
...
...
@@ -2,9 +2,8 @@
namespace
Doctrine\Tests\DBAL\Functional
;
use
\Doctrine\DBAL\Schema\Table
;
use
\Doctrine\DBAL\Schema\Column
;
use
\Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Types\Type
;
class
TemporaryTableTest
extends
\Doctrine\Tests\DbalFunctionalTestCase
{
...
...
tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL752Test.php
View file @
edcdf441
...
...
@@ -2,8 +2,6 @@
namespace
Doctrine\Tests\DBAL\Functional\Ticket
;
use
Doctrine\DBAL\Schema\Table
;
/**
* @group DBAL-752
*/
...
...
tests/Doctrine/Tests/DBAL/Platforms/AbstractMySQLPlatformTestCase.php
View file @
edcdf441
...
...
@@ -5,11 +5,9 @@ namespace Doctrine\Tests\DBAL\Platforms;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
use
Doctrine\DBAL\Schema\Comparator
;
use
Doctrine\DBAL\Schema\ForeignKeyConstraint
;
use
Doctrine\DBAL\
Types\Type
;
use
Doctrine\DBAL\
Schema\Index
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\TableDiff
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Index
;
abstract
class
AbstractMySQLPlatformTestCase
extends
AbstractPlatformTestCase
{
...
...
tests/Doctrine/Tests/DBAL/Platforms/AbstractPostgreSqlPlatformTestCase.php
View file @
edcdf441
...
...
@@ -3,7 +3,6 @@
namespace
Doctrine\Tests\DBAL\Platforms
;
use
Doctrine\DBAL\Schema\Comparator
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\TableDiff
;
...
...
tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php
View file @
edcdf441
...
...
@@ -5,7 +5,6 @@ namespace Doctrine\Tests\DBAL\Platforms;
use
Doctrine\DBAL\Platforms\OraclePlatform
;
use
Doctrine\DBAL\Schema\Comparator
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Types\Type
;
require_once
__DIR__
.
'/../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Platforms/ReservedKeywordsValidatorTest.php
View file @
edcdf441
...
...
@@ -4,8 +4,6 @@ namespace Doctrine\Tests\DBAL\Platforms;
use
Doctrine\DBAL\Platforms\Keywords\ReservedKeywordsValidator
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Column
;
use
Doctrine\DBAL\Types\Type
;
class
ReservedKeywordsValidatorTest
extends
\Doctrine\Tests\DbalTestCase
{
...
...
tests/Doctrine/Tests/DBAL/Platforms/SQLAnywhere16PlatformTest.php
View file @
edcdf441
...
...
@@ -4,7 +4,6 @@ namespace Doctrine\Tests\DBAL\Platforms;
use
Doctrine\DBAL\Platforms\SQLAnywhere16Platform
;
use
Doctrine\DBAL\Schema\Index
;
use
Doctrine\DBAL\Schema\Sequence
;
class
SQLAnywhere16PlatformTest
extends
SQLAnywhere12PlatformTest
{
...
...
tests/Doctrine/Tests/DBAL/Platforms/SqlitePlatformTest.php
View file @
edcdf441
...
...
@@ -2,12 +2,12 @@
namespace
Doctrine\Tests\DBAL\Platforms
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\DBALException
;
use
Doctrine\DBAL\Platforms\SqlitePlatform
;
use
Doctrine\DBAL\Schema\Column
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\TableDiff
;
use
Doctrine\DBAL\Platforms\SqlitePlatform
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\DBALException
;
require_once
__DIR__
.
'/../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Query/Expression/ExpressionBuilderTest.php
View file @
edcdf441
...
...
@@ -2,8 +2,8 @@
namespace
Doctrine\Tests\DBAL\Query\Expression
;
use
Doctrine\DBAL\Query\Expression\
ExpressionBuilder
,
Doctrine\DBAL\Query\Expression\CompositeExpression
;
use
Doctrine\DBAL\Query\Expression\
CompositeExpression
;
use
Doctrine\DBAL\Query\Expression\ExpressionBuilder
;
require_once
__DIR__
.
'/../../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Query/QueryBuilderTest.php
View file @
edcdf441
...
...
@@ -2,8 +2,8 @@
namespace
Doctrine\Tests\DBAL\Query
;
use
Doctrine\DBAL\Query\Expression\ExpressionBuilder
,
Doctrine\DBAL\Query\QueryBuilder
;
use
Doctrine\DBAL\Query\Expression\ExpressionBuilder
;
use
Doctrine\DBAL\Query\QueryBuilder
;
require_once
__DIR__
.
'/../../TestInit.php'
;
...
...
tests/Doctrine/Tests/DBAL/Schema/ColumnTest.php
View file @
edcdf441
...
...
@@ -4,8 +4,6 @@ namespace Doctrine\Tests\DBAL\Schema;
require_once
__DIR__
.
'/../../TestInit.php'
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Column
;
use
Doctrine\DBAL\Types\Type
;
...
...
tests/Doctrine/Tests/DBAL/Schema/ComparatorTest.php
View file @
edcdf441
...
...
@@ -21,18 +21,18 @@ namespace Doctrine\Tests\DBAL\Schema;
require_once
__DIR__
.
'/../../TestInit.php'
;
use
Doctrine\DBAL\Schema\
Schema
,
Doctrine\DBAL\Schema\SchemaConfig
,
Doctrine\DBAL\Schema\Table
,
Doctrine\DBAL\Schema\Column
,
Doctrine\DBAL\Schema\Index
,
Doctrine\DBAL\Schema\Sequence
,
Doctrine\DBAL\Schema\SchemaDiff
,
Doctrine\DBAL\Schema\TableDiff
,
Doctrine\DBAL\Schema\ColumnDiff
,
Doctrine\DBAL\Schema\Comparator
,
Doctrine\DBAL\Types\Type
,
Doctrine\DBAL\Schema\ForeignKeyConstraint
;
use
Doctrine\DBAL\Schema\
Column
;
use
Doctrine\DBAL\Schema\ColumnDiff
;
use
Doctrine\DBAL\Schema\Comparator
;
use
Doctrine\DBAL\Schema\ForeignKeyConstraint
;
use
Doctrine\DBAL\Schema\Index
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\SchemaConfig
;
use
Doctrine\DBAL\Schema\SchemaDiff
;
use
Doctrine\DBAL\Schema\Sequence
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\TableDiff
;
use
Doctrine\DBAL\Types\Type
;
/**
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
...
...
tests/Doctrine/Tests/DBAL/Schema/IndexTest.php
View file @
edcdf441
...
...
@@ -4,9 +4,6 @@ namespace Doctrine\Tests\DBAL\Schema;
require_once
__DIR__
.
'/../../TestInit.php'
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Column
;
use
Doctrine\DBAL\Schema\Index
;
class
IndexTest
extends
\PHPUnit_Framework_TestCase
...
...
tests/Doctrine/Tests/DBAL/Schema/MySqlSchemaManagerTest.php
View file @
edcdf441
...
...
@@ -3,12 +3,9 @@
namespace
Doctrine\Tests\DBAL\Schema
;
use
Doctrine\Common\EventManager
;
use
Doctrine\DBAL\Connection
;
use
Doctrine\DBAL\Configuration
;
use
Doctrine\DBAL\Events
;
use
Doctrine\DBAL\Schema\MySqlSchemaManager
;
use
Doctrine\Tests\DBAL\Mocks
;
use
Doctrine\Tests\TestUtil
;
class
MySqlSchemaManagerTest
extends
\PHPUnit_Framework_TestCase
{
...
...
tests/Doctrine/Tests/DBAL/Schema/Platforms/MySQLSchemaTest.php
View file @
edcdf441
...
...
@@ -4,10 +4,7 @@ namespace Doctrine\Tests\DBAL\Schema\Platforms;
require_once
__DIR__
.
'/../../../TestInit.php'
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Column
;
use
Doctrine\DBAL\Types\Type
;
class
MySQLSchemaTest
extends
\PHPUnit_Framework_TestCase
{
...
...
tests/Doctrine/Tests/DBAL/Schema/SchemaDiffTest.php
View file @
edcdf441
...
...
@@ -4,15 +4,10 @@ namespace Doctrine\Tests\DBAL\Schema;
require_once
__DIR__
.
'/../../TestInit.php'
;
use
Doctrine\DBAL\Schema\Schema
,
Doctrine\DBAL\Schema\Table
,
Doctrine\DBAL\Schema\Column
,
Doctrine\DBAL\Schema\Index
,
Doctrine\DBAL\Schema\Sequence
,
Doctrine\DBAL\Schema\SchemaDiff
,
Doctrine\DBAL\Schema\TableDiff
,
Doctrine\DBAL\Schema\Comparator
,
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Schema\SchemaDiff
;
use
Doctrine\DBAL\Schema\Sequence
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\TableDiff
;
class
SchemaDiffTest
extends
\PHPUnit_Framework_TestCase
{
...
...
tests/Doctrine/Tests/DBAL/Schema/SchemaTest.php
View file @
edcdf441
...
...
@@ -5,8 +5,8 @@ namespace Doctrine\Tests\DBAL\Schema;
require_once
__DIR__
.
'/../../TestInit.php'
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Sequence
;
use
Doctrine\DBAL\Schema\Table
;
class
SchemaTest
extends
\PHPUnit_Framework_TestCase
{
...
...
tests/Doctrine/Tests/DBAL/Schema/SequenceTest.php
View file @
edcdf441
...
...
@@ -2,8 +2,8 @@
namespace
Doctrine\Tests\DBAL\Schema
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Sequence
;
use
Doctrine\DBAL\Schema\Table
;
class
SequenceTest
extends
\Doctrine\Tests\DbalTestCase
{
...
...
tests/Doctrine/Tests/DBAL/Schema/SqliteSchemaManagerTest.php
View file @
edcdf441
...
...
@@ -2,8 +2,8 @@
namespace
Doctrine\Tests\DBAL\Schema
;
use
Doctrine\DBAL\Schema\SqliteSchemaManager
;
use
Doctrine\DBAL\Platforms\SqlitePlatform
;
use
Doctrine\DBAL\Schema\SqliteSchemaManager
;
class
SqliteSchemaManagerTest
extends
\PHPUnit_Framework_TestCase
{
...
...
tests/Doctrine/Tests/DBAL/Schema/TableTest.php
View file @
edcdf441
...
...
@@ -2,12 +2,11 @@
namespace
Doctrine\Tests\DBAL\Schema
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\TableBuilder
;
use
Doctrine\DBAL\Schema\Column
;
use
Doctrine\DBAL\Schema\Index
;
use
Doctrine\DBAL\Schema\ForeignKeyConstraint
;
use
Doctrine\DBAL\Schema\Index
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\TableBuilder
;
use
Doctrine\DBAL\Types\Type
;
class
TableTest
extends
\Doctrine\Tests\DbalTestCase
...
...
tests/Doctrine/Tests/DBAL/Schema/Visitor/CreateSchemaSqlCollectorTest.php
View file @
edcdf441
...
...
@@ -2,7 +2,7 @@
namespace
Doctrine\Tests\DBAL\Schema\Visitor
;
use
\
Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector
;
use
Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector
;
class
CreateSchemaSqlCollectorTest
extends
\PHPUnit_Framework_TestCase
{
...
...
tests/Doctrine/Tests/DBAL/Schema/Visitor/RemoveNamespacedAssetsTest.php
View file @
edcdf441
...
...
@@ -2,10 +2,10 @@
namespace
Doctrine\Tests\DBAL\Schema\Visitor
;
use
Doctrine\DBAL\Platforms\MySqlPlatform
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\SchemaConfig
;
use
Doctrine\DBAL\Schema\Visitor\RemoveNamespacedAssets
;
use
Doctrine\DBAL\Platforms\MySqlPlatform
;
class
RemoveNamespacedAssetsTest
extends
\PHPUnit_Framework_TestCase
{
...
...
tests/Doctrine/Tests/DBAL/Schema/Visitor/SchemaSqlCollectorTest.php
View file @
edcdf441
...
...
@@ -5,8 +5,6 @@ namespace Doctrine\Tests\DBAL\Schema\Visitor;
require_once
__DIR__
.
'/../../../TestInit.php'
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Types\Type
;
class
SchemaSqlCollectorTest
extends
\PHPUnit_Framework_TestCase
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment