You are here

public function OutputFormatterTest::testFormatToStringObject in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php \Symfony\Component\Console\Tests\Formatter\OutputFormatterTest::testFormatToStringObject()

File

vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php, line 169

Class

OutputFormatterTest

Namespace

Symfony\Component\Console\Tests\Formatter

Code

public function testFormatToStringObject() {
  $formatter = new OutputFormatter(false);
  $this
    ->assertEquals('some info', $formatter
    ->format(new TableCell()));
}