1--TEST--
2GH-863: Number of tests to run calculated incorrectly when --repeat is used
3--FILE--
4<?php
5
6$_SERVER['argv'][1] = '--no-configuration';
7$_SERVER['argv'][2] = '--repeat';
8$_SERVER['argv'][3] = '50';
9$_SERVER['argv'][4] = 'BankAccountTest';
10$_SERVER['argv'][5] = dirname(dirname(__DIR__)) . '/_files/BankAccountTest.php';
11
12require __DIR__ . '/../../bootstrap.php';
13PHPUnit_TextUI_Command::main();
14?>
15--EXPECTF--
16PHPUnit %s by Sebastian Bergmann and contributors.
17
18...............................................................  63 / 150 ( 42%)
19............................................................... 126 / 150 ( 84%)
20........................                                        150 / 150 (100%)
21
22Time: %s, Memory: %s
23
24OK (150 tests, 150 assertions)
25