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
186f0c72
Unverified
Commit
186f0c72
authored
Nov 07, 2019
by
Marco Pivetta
Committed by
GitHub
Nov 07, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3719 from greg0ire/remove-phpunit-bridge-remnants
Remove phpunit-bridge specific annotations
parents
80a45c6d
148aafc3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
12 deletions
+0
-12
PDOStatementTest.php
tests/Doctrine/Tests/DBAL/Functional/PDOStatementTest.php
+0
-4
ColumnTest.php
tests/Doctrine/Tests/DBAL/Schema/ColumnTest.php
+0
-8
No files found.
tests/Doctrine/Tests/DBAL/Functional/PDOStatementTest.php
View file @
186f0c72
...
...
@@ -28,10 +28,6 @@ class PDOStatementTest extends DbalFunctionalTestCase
$this
->
connection
->
getSchemaManager
()
->
dropAndCreateTable
(
$table
);
}
/**
* @group legacy
* @expectedDeprecation Using a PDO fetch mode or their combination (%d given) is deprecated and will cause an error in Doctrine 3.0.
*/
public
function
testPDOSpecificModeIsAccepted
()
:
void
{
$this
->
connection
->
insert
(
'stmt_test'
,
[
...
...
tests/Doctrine/Tests/DBAL/Schema/ColumnTest.php
View file @
186f0c72
...
...
@@ -62,10 +62,6 @@ class ColumnTest extends TestCase
self
::
assertEquals
(
$expected
,
$this
->
createColumn
()
->
toArray
());
}
/**
* @group legacy
* @expectedDeprecation The "unknown_option" column option is not supported, setting it is deprecated and will cause an error in Doctrine 3.0
*/
public
function
testSettingUnknownOptionIsStillSupported
()
:
void
{
$this
->
expectNotToPerformAssertions
();
...
...
@@ -73,10 +69,6 @@ class ColumnTest extends TestCase
new
Column
(
'foo'
,
$this
->
createMock
(
Type
::
class
),
[
'unknown_option'
=>
'bar'
]);
}
/**
* @group legacy
* @expectedDeprecation The "unknown_option" column option is not supported, setting it is deprecated and will cause an error in Doctrine 3.0
*/
public
function
testOptionsShouldNotBeIgnored
()
:
void
{
$col1
=
new
Column
(
'bar'
,
Type
::
getType
(
Types
::
INTEGER
),
[
'unknown_option'
=>
'bar'
,
'notnull'
=>
true
]);
...
...
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