Neos\Flow\Tests\Unit\Property\TypeConverter\BooleanConverterTest::checkMetadata PHP Method

checkMetadata() public method

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