[2.0] Simplifying code. Including OneToManyBidirectionalAssociation test in AllTests
This commit is contained in:
parent
5bbc2a9e58
commit
5b67754595
2 changed files with 5 additions and 6 deletions
|
@ -89,12 +89,10 @@ class ECommerceProduct
|
||||||
}
|
}
|
||||||
|
|
||||||
public function removeFeature(ECommerceFeature $feature) {
|
public function removeFeature(ECommerceFeature $feature) {
|
||||||
foreach ($this->features as $index => $current) {
|
$removed = $this->features->removeElement($feature);
|
||||||
if ($current === $feature) {
|
if ($removed !== null) {
|
||||||
unset($this->features[$index]);
|
$removed->removeProduct();
|
||||||
$current->removeProduct();
|
return true;
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,7 @@ class AllTests
|
||||||
$suite->addTestSuite('Doctrine\Tests\ORM\Functional\QueryTest');
|
$suite->addTestSuite('Doctrine\Tests\ORM\Functional\QueryTest');
|
||||||
$suite->addTestSuite('Doctrine\Tests\ORM\Functional\OneToOneUnidirectionalAssociationTest');
|
$suite->addTestSuite('Doctrine\Tests\ORM\Functional\OneToOneUnidirectionalAssociationTest');
|
||||||
$suite->addTestSuite('Doctrine\Tests\ORM\Functional\OneToOneBidirectionalAssociationTest');
|
$suite->addTestSuite('Doctrine\Tests\ORM\Functional\OneToOneBidirectionalAssociationTest');
|
||||||
|
$suite->addTestSuite('Doctrine\Tests\ORM\Functional\OneToManyBidirectionalAssociationTest');
|
||||||
|
|
||||||
return $suite;
|
return $suite;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue