1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
--TEST--
phpunit --display-all-issues ../_files/OutcomesAndIssuesTest
--FILE--
<?php declare(strict_types=1);
$_SERVER['argv'][] = '--do-not-cache-result';
$_SERVER['argv'][] = '--no-configuration';
$_SERVER['argv'][] = '--display-all-issues';
$_SERVER['argv'][] = __DIR__ . '/../_files/OutcomesAndIssuesTest.php';
require_once __DIR__ . '/../../bootstrap.php';
(new PHPUnit\TextUI\Application)->run($_SERVER['argv']);
--EXPECTF--
PHPUnit %s by Sebastian Bergmann and contributors.
Runtime: %s
.RDNWFFFEEEDNWDNW 17 / 17 (100%)
Time: %s, Memory: %s
There were 3 errors:
1) PHPUnit\TestFixture\OutcomesAndIssuesTest::testErrorWithDeprecation
Exception: exception message
%sOutcomesAndIssuesTest.php:%d
2) PHPUnit\TestFixture\OutcomesAndIssuesTest::testErrorWithNotice
Exception: exception message
%sOutcomesAndIssuesTest.php:%d
3) PHPUnit\TestFixture\OutcomesAndIssuesTest::testErrorWithWarning
Exception: exception message
%sOutcomesAndIssuesTest.php:%d
--
There were 3 failures:
1) PHPUnit\TestFixture\OutcomesAndIssuesTest::testFailWithDeprecation
Failed asserting that false is true.
%sOutcomesAndIssuesTest.php:%d
2) PHPUnit\TestFixture\OutcomesAndIssuesTest::testFailWithNotice
Failed asserting that false is true.
%sOutcomesAndIssuesTest.php:%d
3) PHPUnit\TestFixture\OutcomesAndIssuesTest::testFailWithWarning
Failed asserting that false is true.
%sOutcomesAndIssuesTest.php:%d
--
There was 1 risky test:
1) PHPUnit\TestFixture\OutcomesAndIssuesTest::testSuccessWithRisky
This test did not perform any assertions
%sOutcomesAndIssuesTest.php:%d
--
There were 3 incomplete tests:
1) PHPUnit\TestFixture\OutcomesAndIssuesTest::testIncompleteWithDeprecation
incomplete message
%sOutcomesAndIssuesTest.php:%d
2) PHPUnit\TestFixture\OutcomesAndIssuesTest::testIncompleteWithNotice
incomplete message
%sOutcomesAndIssuesTest.php:%d
3) PHPUnit\TestFixture\OutcomesAndIssuesTest::testIncompleteWithWarning
incomplete message
%sOutcomesAndIssuesTest.php:%d
--
There were 3 skipped tests:
1) PHPUnit\TestFixture\OutcomesAndIssuesTest::testSkippedWithDeprecation
skipped message
2) PHPUnit\TestFixture\OutcomesAndIssuesTest::testSkippedWithNotice
skipped message
3) PHPUnit\TestFixture\OutcomesAndIssuesTest::testSkippedWithWarning
skipped message
--
5 tests triggered 5 warnings:
1) %sOutcomesAndIssuesTest.php:%d
warning message
2) %sOutcomesAndIssuesTest.php:%d
warning message
3) %sOutcomesAndIssuesTest.php:%d
warning message
4) %sOutcomesAndIssuesTest.php:%d
warning message
5) %sOutcomesAndIssuesTest.php:%d
warning message
--
5 tests triggered 5 notices:
1) %sOutcomesAndIssuesTest.php:%d
notice message
2) %sOutcomesAndIssuesTest.php:%d
notice message
3) %sOutcomesAndIssuesTest.php:%d
notice message
4) %sOutcomesAndIssuesTest.php:%d
notice message
5) %sOutcomesAndIssuesTest.php:%d
notice message
--
5 tests triggered 5 deprecations:
1) %sOutcomesAndIssuesTest.php:%d
deprecation message
2) %sOutcomesAndIssuesTest.php:%d
deprecation message
3) %sOutcomesAndIssuesTest.php:%d
deprecation message
4) %sOutcomesAndIssuesTest.php:%d
deprecation message
5) %sOutcomesAndIssuesTest.php:%d
deprecation message
ERRORS!
Tests: 17, Assertions: 7, Errors: 3, Failures: 3, Warnings: 5, Deprecations: 5, Notices: 5, Skipped: 3, Incomplete: 3, Risky: 1.
|