public function testOffsetUnset()
 {
     $this->object->offsetUnset('scalarAdapter');
     $this->assertFalse($this->object->offsetExists('scalarAdapter'));
 }
Esempio n. 2
0
 /**
  * @dataProvider offsetProvider
  */
 public function testOffsetExists($offset)
 {
     $this->assertFalse($this->object->offsetExists($offset));
 }