You are here

public function CollectionTest::testArrayAccess in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/doctrine/collections/tests/Doctrine/Tests/Common/Collections/CollectionTest.php \Doctrine\Tests\Common\Collections\CollectionTest::testArrayAccess()

File

vendor/doctrine/collections/tests/Doctrine/Tests/Common/Collections/CollectionTest.php, line 77

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

public function testArrayAccess() {
  $this->collection[] = 'one';
  $this->collection[] = 'two';
  $this
    ->assertEquals($this->collection[0], 'one');
  $this
    ->assertEquals($this->collection[1], 'two');
  unset($this->collection[0]);
  $this
    ->assertEquals($this->collection
    ->count(), 1);
}