public function CollectionTest::testGet

File

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

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

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