You are here

protected function ProgressBarTest::getOutputStream in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Tests/Helper/ProgressBarTest.php \Symfony\Component\Console\Tests\Helper\ProgressBarTest::getOutputStream()
29 calls to ProgressBarTest::getOutputStream()
ProgressBarTest::testAddingPlaceholderFormatter in vendor/symfony/console/Tests/Helper/ProgressBarTest.php
ProgressBarTest::testAdvance in vendor/symfony/console/Tests/Helper/ProgressBarTest.php
ProgressBarTest::testAdvanceMultipleTimes in vendor/symfony/console/Tests/Helper/ProgressBarTest.php
ProgressBarTest::testAdvanceOverMax in vendor/symfony/console/Tests/Helper/ProgressBarTest.php
ProgressBarTest::testAdvanceWithStep in vendor/symfony/console/Tests/Helper/ProgressBarTest.php

... See full list

File

vendor/symfony/console/Tests/Helper/ProgressBarTest.php, line 601

Class

ProgressBarTest

Namespace

Symfony\Component\Console\Tests\Helper

Code

protected function getOutputStream($decorated = true, $verbosity = StreamOutput::VERBOSITY_NORMAL) {
  return new StreamOutput(fopen('php://memory', 'r+', false), $verbosity, $decorated);
}