| 1 | <?php |
||
| 18 | class ContainsKeyCollectionTest extends UnitTestCase |
||
| 19 | { |
||
| 20 | public function testContainsKeyReturnsTrueIfItemExistsByKey() |
||
| 21 | { |
||
| 22 | $exp = $this->fixtures['assoc']; |
||
| 23 | $coll = Factory::create($exp); |
||
| 24 | $this->assertTrue($coll->containsKey('2nd')); |
||
| 25 | $coll->remove('2nd'); |
||
| 26 | $this->assertFalse($coll->containsKey('2nd')); |
||
| 27 | } |
||
| 28 | } |
||
| 29 |