1--TEST--
2phpunit --testdox-text php://stdout BankAccountTest ../_files/BankAccountTest.php
3--FILE--
4<?php
5$_SERVER['argv'][1] = '--no-configuration';
6$_SERVER['argv'][2] = '--testdox-text';
7$_SERVER['argv'][3] = 'php://stdout';
8$_SERVER['argv'][4] = 'BankAccountTest';
9$_SERVER['argv'][5] = __DIR__ . '/../_files/BankAccountTest.php';
10
11require __DIR__ . '/../bootstrap.php';
12PHPUnit_TextUI_Command::main();
13--EXPECTF--
14PHPUnit %s by Sebastian Bergmann and contributors.
15
16BankAccount
17...                                                                 3 / 3 (100%) [x] Balance is initially zero
18 [x] Balance cannot become negative
19
20
21
22Time: %s, Memory: %s
23
24OK (3 tests, 3 assertions)
25