/**
  * @dataProvider getUuidAttributeFixture
  */
 public function testCreateValue($uuid)
 {
     $uuid_attribute = new UuidAttribute(self::ATTR_NAME, $this->getTypeMock());
     $value = $uuid_attribute->createValueHolder();
     $this->assertInstanceOf(UuidValueHolder::CLASS, $value);
     $value->setValue($uuid);
     $this->assertEquals($uuid, $value->getValue());
 }