public function CollectionTest::testGetValues

File

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

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

public function testGetValues() {
  $this->_coll[] = 'one';
  $this->_coll[] = 'two';
  $this
    ->assertEquals(array(
    'one',
    'two',
  ), $this->_coll
    ->getValues());
}