public function ProgressBarTest::testPercent in Zircon Profile 8
Same name and namespace in other branches
- 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
Namespace
Symfony\Component\Console\Tests\HelperCode
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()));
}