You are here

public function ArrayCollectionTest::testKey in Plug 7

@dataProvider provideDifferentElements

File

lib/doctrine/collections/tests/Doctrine/Tests/Common/Collections/ArrayCollectionTest.php, line 63

Class

ArrayCollectionTest
Tests for { @covers \Doctrine\Common\Collections\ArrayCollection

Namespace

Doctrine\Tests\Common\Collections

Code

public function testKey($elements) {
  $collection = new ArrayCollection($elements);
  $this
    ->assertSame(key($elements), $collection
    ->key());
  next($elements);
  $collection
    ->next();
  $this
    ->assertSame(key($elements), $collection
    ->key());
}