public function ArrayCollectionTest::testFirst in Plug 7
@dataProvider provideDifferentElements
File
- lib/
doctrine/ collections/ tests/ Doctrine/ Tests/ Common/ Collections/ ArrayCollectionTest.php, line 45
Class
- ArrayCollectionTest
- Tests for { @covers \Doctrine\Common\Collections\ArrayCollection
Namespace
Doctrine\Tests\Common\CollectionsCode
public function testFirst($elements) {
$collection = new ArrayCollection($elements);
$this
->assertSame(reset($elements), $collection
->first());
}