You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor violation handling and improve GitLab output.
Unified violation instantiation and assertion logic in tests, replacing mock-based violations with direct object creation. Simplified JSON output comparisons using `assertSame` with string literals. Updated `GitlabPrinter` to use relative paths for better clarity in output.
Copy file name to clipboardexpand all lines: tests/E2E/Cli/CheckCommandTest.php
+4-12
Original file line number
Diff line number
Diff line change
@@ -207,18 +207,10 @@ public function test_gitlab_format_output(): void
207
207
208
208
$this->assertJson($display);
209
209
210
-
$decodedResult = json_decode($display, true);
211
-
212
-
$this->assertIsString($display, 'Result should be a string');
213
-
$this->assertJson($display, 'Result should be a valid JSON string');
214
-
$this->assertCount(1, $decodedResult, 'Result should contain two violations');
215
-
216
-
$this->assertSame('should have a name that matches *Controller because all controllers should be end name with Controller', $decodedResult[0]['description']);
[{"description":"should have a name that matches *Controller because all controllers should be end name with Controller","check_name":"App\\\\Controller\\\\Foo.should-have-a-name-that-matches-controller-because-all-controllers-should-be-end-name-with-controller","fingerprint":"1e960c3f49b5ec63ece40321072ef2bd0bc33ad11b7be326f304255d277dc860","severity":"major","location":{"path":"tests\/E2E\/_fixtures\/mvc\/Controller\/Foo.php"},"lines":{"begin":1}}]
0 commit comments