eZ\Bundle\EzPublishCoreBundle\DependencyInjection\Configuration\Suggestion\Tests\Formatter\YamlSuggestionFormatterTest::testFormatNoSuggestion PHP Method

testFormatNoSuggestion() public method

    public function testFormatNoSuggestion()
    {
        $message = 'This is a message';
        $suggestion = new ConfigSuggestion($message);
        $formatter = new YamlSuggestionFormatter();
        $this->assertSame($message, $formatter->format($suggestion));
    }
YamlSuggestionFormatterTest