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
5b677545
Commit
5b677545
authored
Jul 01, 2009
by
romanb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Simplifying code. Including OneToManyBidirectionalAssociation test in AllTests
parent
5bbc2a9e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
ECommerceProduct.php
tests/Doctrine/Tests/Models/ECommerce/ECommerceProduct.php
+4
-6
AllTests.php
tests/Doctrine/Tests/ORM/Functional/AllTests.php
+1
-0
No files found.
tests/Doctrine/Tests/Models/ECommerce/ECommerceProduct.php
View file @
5b677545
...
...
@@ -89,12 +89,10 @@ class ECommerceProduct
}
public
function
removeFeature
(
ECommerceFeature
$feature
)
{
foreach
(
$this
->
features
as
$index
=>
$current
)
{
if
(
$current
===
$feature
)
{
unset
(
$this
->
features
[
$index
]);
$current
->
removeProduct
();
return
true
;
}
$removed
=
$this
->
features
->
removeElement
(
$feature
);
if
(
$removed
!==
null
)
{
$removed
->
removeProduct
();
return
true
;
}
return
false
;
}
...
...
tests/Doctrine/Tests/ORM/Functional/AllTests.php
View file @
5b677545
...
...
@@ -28,6 +28,7 @@ class AllTests
$suite
->
addTestSuite
(
'Doctrine\Tests\ORM\Functional\QueryTest'
);
$suite
->
addTestSuite
(
'Doctrine\Tests\ORM\Functional\OneToOneUnidirectionalAssociationTest'
);
$suite
->
addTestSuite
(
'Doctrine\Tests\ORM\Functional\OneToOneBidirectionalAssociationTest'
);
$suite
->
addTestSuite
(
'Doctrine\Tests\ORM\Functional\OneToManyBidirectionalAssociationTest'
);
return
$suite
;
}
...
...
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