Skip to content
This repository was archived by the owner on Apr 28, 2021. It is now read-only.

Commit aa2e11f

Browse files
committed
Experiment in TC
1 parent f7f713c commit aa2e11f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/ConverterTeamCityInspectionsTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function testPhpCsCodestyle()
3636
$actual = (new TeamCityInspectionsConverter(['show-datetime' => false]))
3737
->setFlowId(1)
3838
->fromInternal($source);
39-
echo $actual;
39+
4040
isSame(
4141
"\n" . implode("\n\n", [
4242
"##teamcity[inspectionType id='CheckStyle:PSR12.Properties.ConstantVisibility.NotFound' name='PSR12.Properties.ConstantVisibility.NotFound' category='CheckStyle' description='Issues found while checking coding standards' flowId='1']",
@@ -60,7 +60,7 @@ public function testPhanCodeStyle()
6060
$actual = (new TeamCityInspectionsConverter(['show-datetime' => false]))
6161
->setFlowId(1)
6262
->fromInternal($source);
63-
echo $actual;
63+
6464
isSame(
6565
"\n" . implode("\n\n", [
6666
"##teamcity[inspectionType id='CheckStyle:PhanPossiblyFalseTypeMismatchProperty' name='PhanPossiblyFalseTypeMismatchProperty' category='CheckStyle' description='Issues found while checking coding standards' flowId='1']",
@@ -88,7 +88,7 @@ public function testJUnitSimple()
8888
$actual = (new TeamCityInspectionsConverter(['show-datetime' => false]))
8989
->setFlowId(1)
9090
->fromInternal($source);
91-
echo $actual;
91+
9292
isSame(
9393
"\n" . implode("\n\n", [
9494
"##teamcity[inspectionType id='CodingStandardIssues:JBZoo\PHPUnit\ExampleTest' name='JBZoo\PHPUnit\ExampleTest' category='CodingStandardIssues' description='Issues found while checking coding standards' flowId='1']",
@@ -114,7 +114,7 @@ public function testJUnitNested()
114114
$actual = (new TeamCityInspectionsConverter(['show-datetime' => false]))
115115
->setFlowId(1)
116116
->fromInternal($source);
117-
echo $actual;
117+
118118
isSame(
119119
"\n" . implode("\n\n", [
120120
"##teamcity[inspectionType id='CodingStandardIssues:JBZoo\PHPUnit\ExampleTest' name='JBZoo\PHPUnit\ExampleTest' category='CodingStandardIssues' description='Issues found while checking coding standards' flowId='1']",

0 commit comments

Comments
 (0)