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