eZ\Bundle\EzPublishCoreBundle\Tests\Converter\LocationParamConverterTest::testSupports PHP Method

testSupports() public method

public testSupports ( )
    public function testSupports()
    {
        $config = $this->createConfiguration(self::LOCATION_CLASS);
        $this->assertTrue($this->converter->supports($config));
        $config = $this->createConfiguration(__CLASS__);
        $this->assertFalse($this->converter->supports($config));
        $config = $this->createConfiguration();
        $this->assertFalse($this->converter->supports($config));
    }