public function CollectionTest::testRemovingNonExistentEntryReturnsNull

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Collections/CollectionTest.php, line 35

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

public function testRemovingNonExistentEntryReturnsNull() {
  $this
    ->assertEquals(null, $this->_coll
    ->remove('testing_does_not_exist'));
}