public function testType()
 {
     $this->assertNull($this->attributeMetadata->getType());
     $type = $this->prophesize('PropertyInfo\\Type')->reveal();
     $newAttributeMetadata = $this->attributeMetadata->withType($type);
     $this->assertEquals($type, $newAttributeMetadata->getType());
     $this->assertNotEquals($this->attributeMetadata, $newAttributeMetadata);
 }