public function OutputTest::testSetIsDecorated in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Tests/Output/OutputTest.php \Symfony\Component\Console\Tests\Output\OutputTest::testSetIsDecorated()
File
- vendor/
symfony/ console/ Tests/ Output/ OutputTest.php, line 26
Class
Namespace
Symfony\Component\Console\Tests\OutputCode
public function testSetIsDecorated() {
$output = new TestOutput();
$output
->setDecorated(true);
$this
->assertTrue($output
->isDecorated(), 'setDecorated() sets the decorated flag');
}