/**
  * @depends testSetValuesSetsProperty
  */
 public function testGetValuesGetsProperty()
 {
     $this->propertyDataMock->setValues(array('value'));
     $this->assertSame(array('value'), $this->propertyDataMock->getValues());
 }