Skip to content

Commit 5c058fd

Browse files
smiroksebastianbergmann
authored andcommitted
Remove empty lines between teamcity events
1 parent 9145fbc commit 5c058fd

16 files changed

+1
-214
lines changed

src/Logging/TeamCity/TeamCityLogger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ private function writeMessage(string $eventName, array $parameters = []): void
296296
{
297297
$this->printer->print(
298298
sprintf(
299-
"\n##teamcity[%s",
299+
"##teamcity[%s",
300300
$eventName,
301301
),
302302
);

tests/end-to-end/logging/log-teamcity-comparisonfailure.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,8 @@ require_once __DIR__ . '/../../bootstrap.php';
1414
(new PHPUnit\TextUI\Application)->run($_SERVER['argv']);
1515
--EXPECTF--
1616
##teamcity[testCount count='1' flowId='%d']
17-
1817
##teamcity[testSuiteStarted name='PHPUnit\TestFixture\ComparisonFailureTest' locationHint='php_qn:%sComparisonFailureTest.php::\PHPUnit\TestFixture\ComparisonFailureTest' flowId='%d']
19-
2018
##teamcity[testStarted name='testOne' locationHint='php_qn:%sComparisonFailureTest.php::\PHPUnit\TestFixture\ComparisonFailureTest::testOne' flowId='%d']
21-
2219
##teamcity[testFailed name='testOne' message='Failed asserting that false matches expected true.' details='%sComparisonFailureTest.php:%d|n' duration='%s' type='comparisonFailure' actual='false' expected='true' flowId='%d']
23-
2420
##teamcity[testFinished name='testOne' duration='%s' flowId='%d']
25-
2621
##teamcity[testSuiteFinished name='PHPUnit\TestFixture\ComparisonFailureTest' flowId='%d']

tests/end-to-end/logging/log-teamcity.phpt

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -14,77 +14,40 @@ require_once __DIR__ . '/../../bootstrap.php';
1414
(new PHPUnit\TextUI\Application)->run($_SERVER['argv']);
1515
--EXPECTF--
1616
##teamcity[testCount count='13' flowId='%d']
17-
1817
##teamcity[testSuiteStarted name='PHPUnit\TestFixture\Basic\StatusTest' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest' flowId='%d']
19-
2018
##teamcity[testStarted name='testSuccess' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSuccess' flowId='%d']
21-
2219
##teamcity[testFinished name='testSuccess' duration='%d' flowId='%d']
23-
2420
##teamcity[testStarted name='testFailure' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testFailure' flowId='%d']
25-
2621
##teamcity[testFailed name='testFailure' message='Failed asserting that false is true.' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
27-
2822
##teamcity[testFinished name='testFailure' duration='%d' flowId='%d']
29-
3023
##teamcity[testStarted name='testError' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testError' flowId='%d']
31-
3224
##teamcity[testFailed name='testError' message='RuntimeException' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
33-
3425
##teamcity[testFinished name='testError' duration='%d' flowId='%d']
35-
3626
##teamcity[testStarted name='testIncomplete' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testIncomplete' flowId='%d']
37-
3827
##teamcity[testIgnored name='testIncomplete' message='' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
39-
4028
##teamcity[testFinished name='testIncomplete' duration='%d' flowId='%d']
41-
4229
##teamcity[testStarted name='testSkipped' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSkipped' flowId='%d']
43-
4430
##teamcity[testIgnored name='testSkipped' message='' duration='%d' flowId='%d']
45-
4631
##teamcity[testFinished name='testSkipped' duration='%d' flowId='%d']
47-
4832
##teamcity[testStarted name='testRisky' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testRisky' flowId='%d']
49-
5033
##teamcity[testFailed name='testRisky' message='This test did not perform any assertions' details='' duration='%d' flowId='%d']
51-
5234
##teamcity[testFinished name='testRisky' duration='%d' flowId='%d']
53-
5435
##teamcity[testStarted name='testSuccessWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSuccessWithMessage' flowId='%d']
55-
5636
##teamcity[testFinished name='testSuccessWithMessage' duration='%d' flowId='%d']
57-
5837
##teamcity[testStarted name='testFailureWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testFailureWithMessage' flowId='%d']
59-
6038
##teamcity[testFailed name='testFailureWithMessage' message='failure with custom message|nFailed asserting that false is true.' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
61-
6239
##teamcity[testFinished name='testFailureWithMessage' duration='%d' flowId='%d']
63-
6440
##teamcity[testStarted name='testErrorWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testErrorWithMessage' flowId='%d']
65-
6641
##teamcity[testFailed name='testErrorWithMessage' message='RuntimeException: error with custom message' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
67-
6842
##teamcity[testFinished name='testErrorWithMessage' duration='%d' flowId='%d']
69-
7043
##teamcity[testStarted name='testIncompleteWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testIncompleteWithMessage' flowId='%d']
71-
7244
##teamcity[testIgnored name='testIncompleteWithMessage' message='incomplete with custom message' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
73-
7445
##teamcity[testFinished name='testIncompleteWithMessage' duration='%d' flowId='%d']
75-
7646
##teamcity[testIgnored name='testSkippedByMetadata' message='PHP > 9000 is required.' duration='%d' flowId='%d']
77-
7847
##teamcity[testStarted name='testSkippedWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSkippedWithMessage' flowId='%d']
79-
8048
##teamcity[testIgnored name='testSkippedWithMessage' message='skipped with custom message' duration='%d' flowId='%d']
81-
8249
##teamcity[testFinished name='testSkippedWithMessage' duration='%d' flowId='%d']
83-
8450
##teamcity[testStarted name='testRiskyWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testRiskyWithMessage' flowId='%d']
85-
8651
##teamcity[testFailed name='testRiskyWithMessage' message='This test did not perform any assertions' details='' duration='%d' flowId='%d']
87-
8852
##teamcity[testFinished name='testRiskyWithMessage' duration='%d' flowId='%d']
89-
9053
##teamcity[testSuiteFinished name='PHPUnit\TestFixture\Basic\StatusTest' flowId='%d']

tests/end-to-end/logging/teamcity-data-provider.phpt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,15 @@ PHPUnit %s by Sebastian Bergmann and contributors.
1515

1616
Runtime: %s
1717

18-
1918
##teamcity[testCount count='2' flowId='%d']
20-
2119
##teamcity[testSuiteStarted name='PHPUnit\TestFixture\TeamCity\DataProviderTest' locationHint='php_qn://%sDataProviderTest.php::\PHPUnit\TestFixture\TeamCity\DataProviderTest' flowId='%d']
22-
2320
##teamcity[testSuiteStarted name='testOne' locationHint='php_qn://%sDataProviderTest.php::\PHPUnit\TestFixture\TeamCity\DataProviderTest::testOne' flowId='%d']
24-
2521
##teamcity[testStarted name='testOne with data set #0' locationHint='php_qn://%sDataProviderTest.php::\PHPUnit\TestFixture\TeamCity\DataProviderTest::testOne with data set #0' flowId='%d']
26-
2722
##teamcity[testFinished name='testOne with data set #0' duration='%d' flowId='%d']
28-
2923
##teamcity[testStarted name='testOne with data set #1' locationHint='php_qn://%sDataProviderTest.php::\PHPUnit\TestFixture\TeamCity\DataProviderTest::testOne with data set #1' flowId='%d']
30-
3124
##teamcity[testFailed name='testOne with data set #1' message='Failed asserting that false is true.' details='%sDataProviderTest.php:28|n' duration='%d' flowId='%d']
32-
3325
##teamcity[testFinished name='testOne with data set #1' duration='%d' flowId='%d']
34-
3526
##teamcity[testSuiteFinished name='testOne' flowId='%d']
36-
3727
##teamcity[testSuiteFinished name='PHPUnit\TestFixture\TeamCity\DataProviderTest' flowId='%d']
3828
Time: %s, Memory: %s
3929

tests/end-to-end/logging/teamcity-directory.phpt

Lines changed: 0 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -15,107 +15,56 @@ PHPUnit %s by Sebastian Bergmann and contributors.
1515

1616
Runtime: %s
1717

18-
1918
##teamcity[testCount count='19' flowId='%d']
20-
2119
##teamcity[testSuiteStarted name='CLI Arguments' flowId='%d']
22-
2320
##teamcity[testSuiteStarted name='PHPUnit\TestFixture\Basic\SetUpBeforeClassTest' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eSetUpBeforeClassTest.php::\PHPUnit\TestFixture\Basic\SetUpBeforeClassTest' flowId='%d']
24-
2521
##teamcity[testSuiteStarted name='PHPUnit\TestFixture\Basic\SetUpTest' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eSetUpTest.php::\PHPUnit\TestFixture\Basic\SetUpTest' flowId='%d']
26-
2722
##teamcity[testFailed name='testOneWithSetUpException' message='RuntimeException: throw exception in setUp' details='%stests%eend-to-end%e_files%ebasic%eunit%eSetUpTest.php:%d|n' duration='%d' flowId='%d']
28-
2923
##teamcity[testFailed name='testTwoWithSetUpException' message='RuntimeException: throw exception in setUp' details='%stests%eend-to-end%e_files%ebasic%eunit%eSetUpTest.php:%d|n' duration='%d' flowId='%d']
30-
3124
##teamcity[testSuiteFinished name='PHPUnit\TestFixture\Basic\SetUpTest' flowId='%d']
32-
3325
##teamcity[testSuiteStarted name='PHPUnit\TestFixture\Basic\StatusTest' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest' flowId='%d']
34-
3526
##teamcity[testStarted name='testSuccess' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSuccess' flowId='%d']
36-
3727
##teamcity[testFinished name='testSuccess' duration='%d' flowId='%d']
38-
3928
##teamcity[testStarted name='testFailure' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testFailure' flowId='%d']
40-
4129
##teamcity[testFailed name='testFailure' message='Failed asserting that false is true.' details='%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php:%d|n' duration='%d' flowId='%d']
42-
4330
##teamcity[testFinished name='testFailure' duration='%d' flowId='%d']
44-
4531
##teamcity[testStarted name='testError' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testError' flowId='%d']
46-
4732
##teamcity[testFailed name='testError' message='RuntimeException' details='%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php:%d|n' duration='%d' flowId='%d']
48-
4933
##teamcity[testFinished name='testError' duration='%d' flowId='%d']
50-
5134
##teamcity[testStarted name='testIncomplete' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testIncomplete' flowId='%d']
52-
5335
##teamcity[testIgnored name='testIncomplete' message='' details='%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php:%d|n' duration='%d' flowId='%d']
54-
5536
##teamcity[testFinished name='testIncomplete' duration='%d' flowId='%d']
56-
5737
##teamcity[testStarted name='testSkipped' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSkipped' flowId='%d']
58-
5938
##teamcity[testIgnored name='testSkipped' message='' duration='%d' flowId='%d']
60-
6139
##teamcity[testFinished name='testSkipped' duration='%d' flowId='%d']
62-
6340
##teamcity[testStarted name='testRisky' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testRisky' flowId='%d']
64-
6541
##teamcity[testFailed name='testRisky' message='This test did not perform any assertions' details='' duration='%d' flowId='%d']
66-
6742
##teamcity[testFinished name='testRisky' duration='%d' flowId='%d']
68-
6943
##teamcity[testStarted name='testSuccessWithMessage' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSuccessWithMessage' flowId='%d']
70-
7144
##teamcity[testFinished name='testSuccessWithMessage' duration='%d' flowId='%d']
72-
7345
##teamcity[testStarted name='testFailureWithMessage' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testFailureWithMessage' flowId='%d']
74-
7546
##teamcity[testFailed name='testFailureWithMessage' message='failure with custom message|nFailed asserting that false is true.' details='%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php:%d|n' duration='%d' flowId='%d']
76-
7747
##teamcity[testFinished name='testFailureWithMessage' duration='%d' flowId='%d']
78-
7948
##teamcity[testStarted name='testErrorWithMessage' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testErrorWithMessage' flowId='%d']
80-
8149
##teamcity[testFailed name='testErrorWithMessage' message='RuntimeException: error with custom message' details='%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php:%d|n' duration='%d' flowId='%d']
82-
8350
##teamcity[testFinished name='testErrorWithMessage' duration='%d' flowId='%d']
84-
8551
##teamcity[testStarted name='testIncompleteWithMessage' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testIncompleteWithMessage' flowId='%d']
86-
8752
##teamcity[testIgnored name='testIncompleteWithMessage' message='incomplete with custom message' details='%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php:%d|n' duration='%d' flowId='%d']
88-
8953
##teamcity[testFinished name='testIncompleteWithMessage' duration='%d' flowId='%d']
90-
9154
##teamcity[testIgnored name='testSkippedByMetadata' message='PHP > 9000 is required.' duration='%d' flowId='%d']
92-
9355
##teamcity[testStarted name='testSkippedWithMessage' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSkippedWithMessage' flowId='%d']
94-
9556
##teamcity[testIgnored name='testSkippedWithMessage' message='skipped with custom message' duration='%d' flowId='%d']
96-
9757
##teamcity[testFinished name='testSkippedWithMessage' duration='%d' flowId='%d']
98-
9958
##teamcity[testStarted name='testRiskyWithMessage' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testRiskyWithMessage' flowId='%d']
100-
10159
##teamcity[testFailed name='testRiskyWithMessage' message='This test did not perform any assertions' details='' duration='%d' flowId='%d']
102-
10360
##teamcity[testFinished name='testRiskyWithMessage' duration='%d' flowId='%d']
104-
10561
##teamcity[testSuiteFinished name='PHPUnit\TestFixture\Basic\StatusTest' flowId='%d']
106-
10762
##teamcity[testSuiteStarted name='PHPUnit\TestFixture\Basic\TearDownAfterClassTest' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eTearDownAfterClassTest.php::\PHPUnit\TestFixture\Basic\TearDownAfterClassTest' flowId='%d']
108-
10963
##teamcity[testStarted name='testOne' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eTearDownAfterClassTest.php::\PHPUnit\TestFixture\Basic\TearDownAfterClassTest::testOne' flowId='%d']
110-
11164
##teamcity[testFinished name='testOne' duration='%d' flowId='%d']
112-
11365
##teamcity[testStarted name='testTwo' locationHint='php_qn://%stests%eend-to-end%e_files%ebasic%eunit%eTearDownAfterClassTest.php::\PHPUnit\TestFixture\Basic\TearDownAfterClassTest::testTwo' flowId='%d']
114-
11566
##teamcity[testFinished name='testTwo' duration='%d' flowId='%d']
116-
11767
##teamcity[testSuiteFinished name='PHPUnit\TestFixture\Basic\TearDownAfterClassTest' flowId='%d']
118-
11968
##teamcity[testSuiteFinished name='CLI Arguments' flowId='%d']
12069
Time: %s, Memory: %s
12170

tests/end-to-end/logging/teamcity-file.phpt

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -15,81 +15,43 @@ PHPUnit %s by Sebastian Bergmann and contributors.
1515

1616
Runtime: %s
1717

18-
1918
##teamcity[testCount count='13' flowId='%d']
20-
2119
##teamcity[testSuiteStarted name='PHPUnit\TestFixture\Basic\StatusTest' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest' flowId='%d']
22-
2320
##teamcity[testStarted name='testSuccess' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSuccess' flowId='%d']
24-
2521
##teamcity[testFinished name='testSuccess' duration='%d' flowId='%d']
26-
2722
##teamcity[testStarted name='testFailure' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testFailure' flowId='%d']
28-
2923
##teamcity[testFailed name='testFailure' message='Failed asserting that false is true.' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
30-
3124
##teamcity[testFinished name='testFailure' duration='%d' flowId='%d']
32-
3325
##teamcity[testStarted name='testError' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testError' flowId='%d']
34-
3526
##teamcity[testFailed name='testError' message='RuntimeException' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
36-
3727
##teamcity[testFinished name='testError' duration='%d' flowId='%d']
38-
3928
##teamcity[testStarted name='testIncomplete' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testIncomplete' flowId='%d']
40-
4129
##teamcity[testIgnored name='testIncomplete' message='' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
42-
4330
##teamcity[testFinished name='testIncomplete' duration='%d' flowId='%d']
44-
4531
##teamcity[testStarted name='testSkipped' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSkipped' flowId='%d']
46-
4732
##teamcity[testIgnored name='testSkipped' message='' duration='%d' flowId='%d']
48-
4933
##teamcity[testFinished name='testSkipped' duration='%d' flowId='%d']
50-
5134
##teamcity[testStarted name='testRisky' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testRisky' flowId='%d']
52-
5335
##teamcity[testFailed name='testRisky' message='This test did not perform any assertions' details='' duration='%d' flowId='%d']
54-
5536
##teamcity[testFinished name='testRisky' duration='%d' flowId='%d']
56-
5737
##teamcity[testStarted name='testSuccessWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSuccessWithMessage' flowId='%d']
58-
5938
##teamcity[testFinished name='testSuccessWithMessage' duration='%d' flowId='%d']
60-
6139
##teamcity[testStarted name='testFailureWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testFailureWithMessage' flowId='%d']
62-
6340
##teamcity[testFailed name='testFailureWithMessage' message='failure with custom message|nFailed asserting that false is true.' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
64-
6541
##teamcity[testFinished name='testFailureWithMessage' duration='%d' flowId='%d']
66-
6742
##teamcity[testStarted name='testErrorWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testErrorWithMessage' flowId='%d']
68-
6943
##teamcity[testFailed name='testErrorWithMessage' message='RuntimeException: error with custom message' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
70-
7144
##teamcity[testFinished name='testErrorWithMessage' duration='%d' flowId='%d']
72-
7345
##teamcity[testStarted name='testIncompleteWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testIncompleteWithMessage' flowId='%d']
74-
7546
##teamcity[testIgnored name='testIncompleteWithMessage' message='incomplete with custom message' details='%sStatusTest.php:%d|n' duration='%d' flowId='%d']
76-
7747
##teamcity[testFinished name='testIncompleteWithMessage' duration='%d' flowId='%d']
78-
7948
##teamcity[testIgnored name='testSkippedByMetadata' message='PHP > 9000 is required.' duration='%d' flowId='%d']
80-
8149
##teamcity[testStarted name='testSkippedWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testSkippedWithMessage' flowId='%d']
82-
8350
##teamcity[testIgnored name='testSkippedWithMessage' message='skipped with custom message' duration='%d' flowId='%d']
84-
8551
##teamcity[testFinished name='testSkippedWithMessage' duration='%d' flowId='%d']
86-
8752
##teamcity[testStarted name='testRiskyWithMessage' locationHint='php_qn://%sStatusTest.php::\PHPUnit\TestFixture\Basic\StatusTest::testRiskyWithMessage' flowId='%d']
88-
8953
##teamcity[testFailed name='testRiskyWithMessage' message='This test did not perform any assertions' details='' duration='%d' flowId='%d']
90-
9154
##teamcity[testFinished name='testRiskyWithMessage' duration='%d' flowId='%d']
92-
9355
##teamcity[testSuiteFinished name='PHPUnit\TestFixture\Basic\StatusTest' flowId='%d']
9456
Time: %s, Memory: %s
9557

0 commit comments

Comments
 (0)