Пример #1
0
 /**
  * @test
  */
 public function remove()
 {
     $object = new Sabel_ValueObject();
     $object->a = 10;
     $this->assertTrue($object->has("a"));
     $object->remove("a");
     $this->assertFalse($object->has("a"));
 }