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
a6f5b3b0
Commit
a6f5b3b0
authored
Nov 25, 2013
by
Steve Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix tests
parent
f2e6fa86
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
SchemaManagerFunctionalTestCase.php
...BAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
+2
-2
DBAL461Test.php
tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL461Test.php
+1
-0
No files found.
tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
View file @
a6f5b3b0
...
...
@@ -524,7 +524,7 @@ class SchemaManagerFunctionalTestCase extends \Doctrine\Tests\DbalFunctionalTest
{
if
(
!
$this
->
_conn
->
getDatabasePlatform
()
->
supportsInlineColumnComments
()
&&
!
$this
->
_conn
->
getDatabasePlatform
()
->
supportsCommentOnStatement
()
&&
!
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
=
=
'mssql'
)
{
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
!
=
'mssql'
)
{
$this
->
markTestSkipped
(
'Database does not support column comments.'
);
}
...
...
@@ -560,7 +560,7 @@ class SchemaManagerFunctionalTestCase extends \Doctrine\Tests\DbalFunctionalTest
{
if
(
!
$this
->
_conn
->
getDatabasePlatform
()
->
supportsInlineColumnComments
()
&&
!
$this
->
_conn
->
getDatabasePlatform
()
->
supportsCommentOnStatement
()
&&
!
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
=
=
'mssql'
)
{
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
!
=
'mssql'
)
{
$this
->
markTestSkipped
(
'Database does not support column comments.'
);
}
...
...
tests/Doctrine/Tests/DBAL/Functional/Ticket/DBAL461Test.php
View file @
a6f5b3b0
...
...
@@ -28,6 +28,7 @@ class DBAL461Test extends \PHPUnit_Framework_TestCase
'precision'
=>
0
,
'autoincrement'
=>
false
,
'collation'
=>
'foo'
,
'comment'
=>
null
,
));
$this
->
assertEquals
(
'Decimal'
,
(
string
)
$column
->
getType
());
...
...
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