1--TEST--
2phpunit --testdox-text php://stdout --testdox-group one TestDoxGroupTest ../_files/TestDoxGroupTest.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] = '--testdox-group';
9$_SERVER['argv'][5] = 'one';
10$_SERVER['argv'][6] = 'TestDoxGroupTest';
11$_SERVER['argv'][7] = __DIR__ . '/../_files/TestDoxGroupTest.php';
12
13require __DIR__ . '/../bootstrap.php';
14PHPUnit_TextUI_Command::main();
15--EXPECTF--
16PHPUnit %s by Sebastian Bergmann and contributors.
17
18DoxGroup
19..                                                                  2 / 2 (100%) [x] One
20
21
22
23Time: %s, Memory: %s
24
25OK (2 tests, 0 assertions)
26