upgrade zend (#1559)
[openemr.git] / vendor / phpunit / phpunit / tests / TextUI / custom-printer-debug.phpt
blob183ad3a675272c03542775be5d26adcf44b3a60f
1 --TEST--
2 phpunit -c ../_files/configuration.custom-printer.xml --debug BankAccountTest ../_files/BankAccountTest.php
3 --FILE--
4 <?php
5 $_SERVER['argv'][1] = '-c';
6 $_SERVER['argv'][2] = __DIR__ . '/../_files/configuration.custom-printer.xml';
7 $_SERVER['argv'][3] = '--debug';
8 $_SERVER['argv'][4] = 'BankAccountTest';
9 $_SERVER['argv'][5] = __DIR__ . '/../_files/BankAccountTest.php';
11 require __DIR__ . '/../bootstrap.php';
12 PHPUnit_TextUI_Command::main();
13 --EXPECTF--
14 PHPUnit %s by Sebastian Bergmann and contributors.
17 Starting test 'BankAccountTest::testBalanceIsInitiallyZero'.
19 Starting test 'BankAccountTest::testBalanceCannotBecomeNegative'.
21 Starting test 'BankAccountTest::testBalanceCannotBecomeNegative2'.
22 .                                                                 3 / 3 (100%)
24 Time: %s, Memory: %s
26 OK (3 tests, 3 assertions)