@@ -24,7 +24,7 @@ public function testLineCoverageForBankAccountTest(): void
24
24
$ text = new Text (Thresholds::default (), false , false );
25
25
26
26
$ this ->assertStringMatchesFormatFile (
27
- TEST_FILES_PATH . 'BankAccount-text -line.txt ' ,
27
+ TEST_FILES_PATH . 'Report/Text/ BankAccount-line.txt ' ,
28
28
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getLineCoverageForBankAccount ())),
29
29
);
30
30
}
@@ -34,7 +34,7 @@ public function testPathCoverageForBankAccountTest(): void
34
34
$ text = new Text (Thresholds::default (), false , false );
35
35
36
36
$ this ->assertStringMatchesFormatFile (
37
- TEST_FILES_PATH . 'BankAccount-text -path.txt ' ,
37
+ TEST_FILES_PATH . 'Report/Text/ BankAccount-path.txt ' ,
38
38
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getPathCoverageForBankAccount ())),
39
39
);
40
40
}
@@ -44,7 +44,7 @@ public function testTextOnlySummaryForBankAccountTest(): void
44
44
$ text = new Text (Thresholds::default (), false , true );
45
45
46
46
$ this ->assertStringMatchesFormatFile (
47
- TEST_FILES_PATH . 'BankAccount-text -summary.txt ' ,
47
+ TEST_FILES_PATH . 'Report/Text/ BankAccount-summary.txt ' ,
48
48
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getLineCoverageForBankAccount ())),
49
49
);
50
50
}
@@ -54,7 +54,7 @@ public function testTextForNamespacedBankAccountTest(): void
54
54
$ text = new Text (Thresholds::default (), true , false );
55
55
56
56
$ this ->assertStringMatchesFormatFile (
57
- TEST_FILES_PATH . 'NamespacedBankAccount-text .txt ' ,
57
+ TEST_FILES_PATH . 'Report/Text/ NamespacedBankAccount.txt ' ,
58
58
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getLineCoverageForNamespacedBankAccount ())),
59
59
);
60
60
}
@@ -64,7 +64,7 @@ public function testTextForNamespacedBankAccountTestWhenColorsAreEnabled(): void
64
64
$ text = new Text (Thresholds::default (), true , false );
65
65
66
66
$ this ->assertStringMatchesFormatFile (
67
- TEST_FILES_PATH . 'NamespacedBankAccount-text-with -colors.txt ' ,
67
+ TEST_FILES_PATH . 'Report/Text/ NamespacedBankAccount-colors.txt ' ,
68
68
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getLineCoverageForNamespacedBankAccount (), true )),
69
69
);
70
70
}
@@ -74,7 +74,7 @@ public function testTextForFileWithIgnoredLines(): void
74
74
$ text = new Text (Thresholds::default (), false , false );
75
75
76
76
$ this ->assertStringMatchesFormatFile (
77
- TEST_FILES_PATH . 'ignored-lines-text .txt ' ,
77
+ TEST_FILES_PATH . 'Report/Text/ ignored-lines.txt ' ,
78
78
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getCoverageForFileWithIgnoredLines ())),
79
79
);
80
80
}
@@ -84,7 +84,7 @@ public function testTextForClassWithAnonymousFunction(): void
84
84
$ text = new Text (Thresholds::default (), false , false );
85
85
86
86
$ this ->assertStringMatchesFormatFile (
87
- TEST_FILES_PATH . 'class-with-anonymous-function-text .txt ' ,
87
+ TEST_FILES_PATH . 'Report/Text/ class-with-anonymous-function.txt ' ,
88
88
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getCoverageForClassWithAnonymousFunction ())),
89
89
);
90
90
}
@@ -94,7 +94,7 @@ public function testUncoveredFilesAreIncludedWhenConfiguredTest(): void
94
94
$ text = new Text (Thresholds::default (), false , false );
95
95
96
96
$ this ->assertStringMatchesFormatFile (
97
- TEST_FILES_PATH . 'BankAccountWithUncovered-text -line.txt ' ,
97
+ TEST_FILES_PATH . 'Report/Text/ BankAccountWithUncovered-line.txt ' ,
98
98
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getCoverageForFilesWithUncoveredIncluded ())),
99
99
);
100
100
}
@@ -104,7 +104,7 @@ public function testUncoveredFilesAreExcludedWhenConfiguredTest(): void
104
104
$ text = new Text (Thresholds::default (), false , false );
105
105
106
106
$ this ->assertStringMatchesFormatFile (
107
- TEST_FILES_PATH . 'BankAccountWithoutUncovered-text -line.txt ' ,
107
+ TEST_FILES_PATH . 'Report/Text/ BankAccountWithoutUncovered-line.txt ' ,
108
108
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getCoverageForFilesWithUncoveredExcluded ())),
109
109
);
110
110
}
0 commit comments