public function CollectionTest::testSearch

File

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

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

public function testSearch() {
  $this->_coll[0] = 'test';
  $this
    ->assertEquals(0, $this->_coll
    ->indexOf('test'));
}