You are here

public function CollectionTest::testContainsKey in Plug 7

File

lib/doctrine/collections/tests/Doctrine/Tests/Common/Collections/CollectionTest.php, line 89

Class

CollectionTest

Namespace

Doctrine\Tests\Common\Collections

Code

public function testContainsKey() {
  $this->collection[5] = 'five';
  $this
    ->assertTrue($this->collection
    ->containsKey(5));
}