Neos\Flow\Tests\Unit\Property\TypeConverter\StringConverterTest::checkMetadata PHP 메소드

checkMetadata() 공개 메소드

public checkMetadata ( )
    public function checkMetadata()
    {
        $this->assertEquals(array('string', 'integer', 'float', 'boolean', 'array', \DateTimeInterface::class), $this->converter->getSupportedSourceTypes(), 'Source types do not match');
        $this->assertEquals('string', $this->converter->getSupportedTargetType(), 'Target type does not match');
        $this->assertEquals(1, $this->converter->getPriority(), 'Priority does not match');
    }