Doctrine\Tests\OXM\Mapping\AbstractMappingDriverTest::testFieldMappingsCustomSetsAndGets PHP Method

testFieldMappingsCustomSetsAndGets() public method

public testFieldMappingsCustomSetsAndGets ( ClassMetadata $class )
$class Doctrine\OXM\Mapping\ClassMetadata
    public function testFieldMappingsCustomSetsAndGets($class)
    {
        $this->assertEquals('setUsername', $class->fieldMappings['name']['setMethod']);
        $this->assertEquals('getUsername', $class->fieldMappings['name']['getMethod']);
        return $class;
    }