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
dbff8249
Commit
dbff8249
authored
May 02, 2014
by
Marco Pivetta
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #592 from JeroenDeDauw/fqnfix
Fix FQNs
parents
5c54cfda
e2e7d3eb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
ConnectionTest.php
tests/Doctrine/Tests/DBAL/ConnectionTest.php
+2
-2
AbstractSQLServerPlatformTestCase.php
...ests/DBAL/Platforms/AbstractSQLServerPlatformTestCase.php
+1
-1
OraclePlatformTest.php
tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php
+2
-2
No files found.
tests/Doctrine/Tests/DBAL/ConnectionTest.php
View file @
dbff8249
...
...
@@ -14,7 +14,7 @@ use Doctrine\Tests\Mocks\DriverConnectionMock;
class
ConnectionTest
extends
\Doctrine\Tests\DbalTestCase
{
/**
* @var Doctrine\DBAL\Connection
* @var
\
Doctrine\DBAL\Connection
*/
protected
$_conn
=
null
;
...
...
@@ -128,7 +128,7 @@ class ConnectionTest extends \Doctrine\Tests\DbalTestCase
}
/**
* @expectedException Doctrine\DBAL\DBALException
* @expectedException
\
Doctrine\DBAL\DBALException
* @dataProvider getQueryMethods
*/
public
function
testDriverExceptionIsWrapped
(
$method
)
...
...
tests/Doctrine/Tests/DBAL/Platforms/AbstractSQLServerPlatformTestCase.php
View file @
dbff8249
...
...
@@ -44,7 +44,7 @@ abstract class AbstractSQLServerPlatformTestCase extends AbstractPlatformTestCas
}
/**
* @expectedException Doctrine\DBAL\DBALException
* @expectedException
\
Doctrine\DBAL\DBALException
*/
public
function
testDoesNotSupportRegexp
()
{
...
...
tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php
View file @
dbff8249
...
...
@@ -85,7 +85,7 @@ class OraclePlatformTest extends AbstractPlatformTestCase
}
/**
* @expectedException Doctrine\DBAL\DBALException
* @expectedException
\
Doctrine\DBAL\DBALException
*/
public
function
testRLike
()
{
...
...
@@ -119,7 +119,7 @@ class OraclePlatformTest extends AbstractPlatformTestCase
}
/**
* @expectedException Doctrine\DBAL\DBALException
* @expectedException
\
Doctrine\DBAL\DBALException
*/
public
function
testCreateDatabaseThrowsException
()
{
...
...
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