You are here

public function ProgressBarTest::testAdvance 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::testAdvance()

File

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

Class

ProgressBarTest

Namespace

Symfony\Component\Console\Tests\Helper

Code

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