You are here

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

File

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

Class

ProgressBarTest

Namespace

Symfony\Component\Console\Tests\Helper

Code

public function testPercent() {
  $bar = new ProgressBar($output = $this
    ->getOutputStream(), 50);
  $bar
    ->start();
  $bar
    ->display();
  $bar
    ->advance();
  $bar
    ->advance();
  rewind($output
    ->getStream());
  $this
    ->assertEquals($this
    ->generateOutput('  0/50 [>---------------------------]   0%') . $this
    ->generateOutput('  0/50 [>---------------------------]   0%') . $this
    ->generateOutput('  1/50 [>---------------------------]   2%') . $this
    ->generateOutput('  2/50 [=>--------------------------]   4%'), stream_get_contents($output
    ->getStream()));
}