public function CollectionTest::testGetKeys

File

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

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

public function testGetKeys() {
  $this->_coll[] = 'one';
  $this->_coll[] = 'two';
  $this
    ->assertEquals(array(
    0,
    1,
  ), $this->_coll
    ->getKeys());
}