You are here

public function LegacyProgressHelperTest::testAdvance in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Tests/Helper/LegacyProgressHelperTest.php \Symfony\Component\Console\Tests\Helper\LegacyProgressHelperTest::testAdvance()

File

vendor/symfony/console/Tests/Helper/LegacyProgressHelperTest.php, line 35

Class

LegacyProgressHelperTest
@group legacy

Namespace

Symfony\Component\Console\Tests\Helper

Code

public function testAdvance() {
  $progress = new ProgressHelper();
  $progress
    ->start($output = $this
    ->getOutputStream());
  $progress
    ->advance();
  rewind($output
    ->getStream());
  $this
    ->assertEquals($this
    ->generateOutput('    1 [->--------------------------]'), stream_get_contents($output
    ->getStream()));
}