public function CollectionTest::testClear

File

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

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

public function testClear() {
  $this->_coll[] = 'one';
  $this->_coll[] = 'two';
  $this->_coll
    ->clear();
  $this
    ->assertEquals($this->_coll
    ->isEmpty(), true);
}