1--TEST--
2phpunit --process-isolation --exclude-group balanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php
3--FILE--
4<?php
5$_SERVER['argv'][1] = '--no-configuration';
6$_SERVER['argv'][2] = '--process-isolation';
7$_SERVER['argv'][3] = '--exclude-group';
8$_SERVER['argv'][4] = 'balanceIsInitiallyZero';
9$_SERVER['argv'][5] = 'BankAccountTest';
10$_SERVER['argv'][6] = __DIR__ . '/../_files/BankAccountTest.php';
11
12require __DIR__ . '/../bootstrap.php';
13PHPUnit_TextUI_Command::main();
14--EXPECTF--
15PHPUnit %s by Sebastian Bergmann and contributors.
16
17..                                                                  2 / 2 (100%)
18
19Time: %s, Memory: %s
20
21OK (2 tests, 2 assertions)
22