public function CollectionTest::testFirstAndLast

File

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

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

public function testFirstAndLast() {
  $this->_coll
    ->add('one');
  $this->_coll
    ->add('two');
  $this
    ->assertEquals($this->_coll
    ->first(), 'one');
  $this
    ->assertEquals($this->_coll
    ->last(), 'two');
}