public function testGetLengthMultivalue()
 {
     $this->assertEquals(array(3, 1, 3), $this->multiValueProperty->getLength());
 }
 public function testGetLength()
 {
     $size = $this->binaryProperty->getLength();
     $this->assertInternalType('integer', $size);
     $this->assertEquals(strlen($this->decodedstring), $size);
 }