Example #1
0
 public function testSetOffsetSetsGivenOffset()
 {
     $collection = new Collection();
     $collection->offsetSet(15, new stdClass());
     $this->assertInstanceOf('stdClass', $collection->offsetGet(15));
 }