Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / TextUI / dependencies-isolation.phpt
1 --TEST--
2 phpunit --process-isolation --verbose DependencyTestSuite ../_files/DependencyTestSuite.php
3 --FILE--
4 <?php
5 $_SERVER['argv'][1] = '--no-configuration';
6 $_SERVER['argv'][2] = '--process-isolation';
7 $_SERVER['argv'][3] = '--verbose';
8 $_SERVER['argv'][4] = 'DependencyTestSuite';
9 $_SERVER['argv'][5] = dirname(dirname(__FILE__)) . '/_files/DependencyTestSuite.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
19 ...FSS
20
21 Time: %s, Memory: %s
22
23 There was 1 failure:
24
25 1) DependencyFailureTest::testOne
26
27 %s:%i
28
29 --
30
31 There were 2 skipped tests:
32
33 1) DependencyFailureTest::testTwo
34 This test depends on "DependencyFailureTest::testOne" to pass.
35
36 2) DependencyFailureTest::testThree
37 This test depends on "DependencyFailureTest::testTwo" to pass.
38
39 FAILURES!
40 Tests: 4, Assertions: 0, Failures: 1, Skipped: 2.