/**
  * \PHPCR\PropertyInterface::setValue.
  */
 public function testSetValue()
 {
     $this->property->setValue(1024);
     $this->assertEquals(1024, $this->property->getLong());
     $this->saveAndRenewSession();
     $prop = $this->session->getProperty($this->propPath);
     $this->assertEquals(1024, $prop->getLong());
 }