Extends
lithium\test\Unit
Tests `Collection::offsetExists`.
Source
public function testOffsetExists() {
$collection = new DocumentSet();
$this->assertEqual($collection->offsetExists(0), false);
$collection->set(array('foo' => 'bar', 'bas' => 'baz'));
$this->assertEqual($collection->offsetExists(0), true);
$this->assertEqual($collection->offsetExists(1), true);
}