use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\Helper\ProgressIndicator;
use Symfony\Component\Console\Output\StreamOutput;
/**
* @group time-sensitive
*/
class ProgressIndicatorTest extends TestCase
{ public function testDefaultIndicator() { $bar =
new ProgressIndicator($output =
$this->
getOutputStream());
$bar->
start('Starting...'
);
usleep(101000
);
$bar->
advance();
usleep(101000
);
$bar->
advance();
usleep(101000
);
$bar->
advance();
usleep(101000
);
$bar->
advance();
usleep(101000
);
$bar->
advance();