/**
  * @depends testSetValuesSetsProperty
  */
 public function testGetFirstValueReturnsNullIfPropertyDoesNotContainValues()
 {
     $this->propertyDataMock->setValues(array());
     $this->assertNull($this->propertyDataMock->getFirstValue());
 }