Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / TextUI / dependencies.phpt
1 --TEST--
2 phpunit --verbose DependencyTestSuite ../_files/DependencyTestSuite.php
3 --FILE--
4 <?php
5 $_SERVER['argv'][1] = '--no-configuration';
6 $_SERVER['argv'][2] = '--verbose';
7 $_SERVER['argv'][3] = 'DependencyTestSuite';
8 $_SERVER['argv'][4] = dirname(dirname(__FILE__)) . '/_files/DependencyTestSuite.php';
9
10 require __DIR__ . '/../bootstrap.php';
11 PHPUnit_TextUI_Command::main();
12 ?>
13 --EXPECTF--
14 PHPUnit %s by Sebastian Bergmann and contributors.
15
16 Runtime:        %s
17
18 ...FSS
19
20 Time: %s, Memory: %s
21
22 There was 1 failure:
23
24 1) DependencyFailureTest::testOne
25
26 %s:%i
27
28 --
29
30 There were 2 skipped tests:
31
32 1) DependencyFailureTest::testTwo
33 This test depends on "DependencyFailureTest::testOne" to pass.
34
35 2) DependencyFailureTest::testThree
36 This test depends on "DependencyFailureTest::testTwo" to pass.
37
38 FAILURES!
39 Tests: 4, Assertions: 0, Failures: 1, Skipped: 2.