public function CollectionTest::testRemoveElement

File

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

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

public function testRemoveElement() {
  $this->_coll[] = 'one';
  $this->_coll[] = 'two';
  $this
    ->assertTrue($this->_coll
    ->removeElement('two'));
  $this
    ->assertFalse($this->_coll
    ->contains('two'));
  $this
    ->assertFalse($this->_coll
    ->removeElement('two'));
}