Example #1
0
 public function testRemoveFalse()
 {
     $element = new \stdClass();
     $this->assertFalse($this->object->remove(1000));
     $elements = $this->readAttribute($this->object, 'elements');
     $this->assertFalse(in_array($element, $elements));
 }