More tidying.
[yaffs-website] / vendor / phpunit / phpunit / tests / Regression / GitHub / 863.phpt
1 --TEST--
2 GH-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(dirname(__FILE__))) . '/_files/BankAccountTest.php';
11
12 require __DIR__ . '/../../bootstrap.php';
13 PHPUnit_TextUI_Command::main();
14 ?>
15 --EXPECTF--
16 PHPUnit %s by Sebastian Bergmann and contributors.
17
18 ...............................................................  63 / 150 ( 42%)
19 ............................................................... 126 / 150 ( 84%)
20 ........................
21
22 Time: %s, Memory: %s
23
24 OK (150 tests, 150 assertions)