1--TEST--
2phpunit -c ../_files/configuration.custom-printer.xml --verbose IncompleteTest ../_files/IncompleteTest.php
3--FILE--
4<?php
5$_SERVER['argv'][1] = '-c';
6$_SERVER['argv'][2] = __DIR__ . '/../_files/configuration.custom-printer.xml';
7$_SERVER['argv'][3] = '--verbose';
8$_SERVER['argv'][4] = 'IncompleteTest';
9$_SERVER['argv'][5] = __DIR__ . '/../_files/IncompleteTest.php';
10
11require __DIR__ . '/../bootstrap.php';
12PHPUnit_TextUI_Command::main();
13--EXPECTF--
14PHPUnit %s by Sebastian Bergmann and contributors.
15
16Runtime:       %s
17Configuration: %sconfiguration.custom-printer.xml
18
19I                                                                   1 / 1 (100%)
20
21Time: %s, Memory: %s
22
23There was 1 incomplete test:
24
251) IncompleteTest::testIncomplete
26Test incomplete
27
28%s
29
30OK, but incomplete, skipped, or risky tests!
31Tests: 1, Assertions: 0, Incomplete: 1.
32