@@ -22,7 +22,7 @@ public function testLineCoverageForBankAccountTest(): void
22
22
$ text = new Text (Thresholds::default (), false , false );
23
23
24
24
$ this ->assertStringMatchesFormatFile (
25
- TEST_FILES_PATH . 'BankAccount-text -line.txt ' ,
25
+ TEST_FILES_PATH . 'Report/Text/ BankAccount-line.txt ' ,
26
26
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getLineCoverageForBankAccount ())),
27
27
);
28
28
}
@@ -32,7 +32,7 @@ public function testPathCoverageForBankAccountTest(): void
32
32
$ text = new Text (Thresholds::default (), false , false );
33
33
34
34
$ this ->assertStringMatchesFormatFile (
35
- TEST_FILES_PATH . 'BankAccount-text -path.txt ' ,
35
+ TEST_FILES_PATH . 'Report/Text/ BankAccount-path.txt ' ,
36
36
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getPathCoverageForBankAccount ())),
37
37
);
38
38
}
@@ -42,7 +42,7 @@ public function testTextOnlySummaryForBankAccountTest(): void
42
42
$ text = new Text (Thresholds::default (), false , true );
43
43
44
44
$ this ->assertStringMatchesFormatFile (
45
- TEST_FILES_PATH . 'BankAccount-text -summary.txt ' ,
45
+ TEST_FILES_PATH . 'Report/Text/ BankAccount-summary.txt ' ,
46
46
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getLineCoverageForBankAccount ())),
47
47
);
48
48
}
@@ -52,7 +52,7 @@ public function testTextForNamespacedBankAccountTest(): void
52
52
$ text = new Text (Thresholds::default (), true , false );
53
53
54
54
$ this ->assertStringMatchesFormatFile (
55
- TEST_FILES_PATH . 'NamespacedBankAccount-text .txt ' ,
55
+ TEST_FILES_PATH . 'Report/Text/ NamespacedBankAccount.txt ' ,
56
56
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getLineCoverageForNamespacedBankAccount ())),
57
57
);
58
58
}
@@ -62,7 +62,7 @@ public function testTextForNamespacedBankAccountTestWhenColorsAreEnabled(): void
62
62
$ text = new Text (Thresholds::default (), true , false );
63
63
64
64
$ this ->assertStringMatchesFormatFile (
65
- TEST_FILES_PATH . 'NamespacedBankAccount-text-with -colors.txt ' ,
65
+ TEST_FILES_PATH . 'Report/Text/ NamespacedBankAccount-colors.txt ' ,
66
66
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getLineCoverageForNamespacedBankAccount (), true )),
67
67
);
68
68
}
@@ -72,7 +72,7 @@ public function testTextForFileWithIgnoredLines(): void
72
72
$ text = new Text (Thresholds::default (), false , false );
73
73
74
74
$ this ->assertStringMatchesFormatFile (
75
- TEST_FILES_PATH . 'ignored-lines-text .txt ' ,
75
+ TEST_FILES_PATH . 'Report/Text/ ignored-lines.txt ' ,
76
76
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getCoverageForFileWithIgnoredLines ())),
77
77
);
78
78
}
@@ -82,7 +82,7 @@ public function testTextForClassWithAnonymousFunction(): void
82
82
$ text = new Text (Thresholds::default (), false , false );
83
83
84
84
$ this ->assertStringMatchesFormatFile (
85
- TEST_FILES_PATH . 'class-with-anonymous-function-text .txt ' ,
85
+ TEST_FILES_PATH . 'Report/Text/ class-with-anonymous-function.txt ' ,
86
86
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getCoverageForClassWithAnonymousFunction ())),
87
87
);
88
88
}
@@ -92,7 +92,7 @@ public function testUncoveredFilesAreIncludedWhenConfiguredTest(): void
92
92
$ text = new Text (Thresholds::default (), false , false );
93
93
94
94
$ this ->assertStringMatchesFormatFile (
95
- TEST_FILES_PATH . 'BankAccountWithUncovered-text -line.txt ' ,
95
+ TEST_FILES_PATH . 'Report/Text/ BankAccountWithUncovered-line.txt ' ,
96
96
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getCoverageForFilesWithUncoveredIncluded ())),
97
97
);
98
98
}
@@ -102,7 +102,7 @@ public function testUncoveredFilesAreExcludedWhenConfiguredTest(): void
102
102
$ text = new Text (Thresholds::default (), false , false );
103
103
104
104
$ this ->assertStringMatchesFormatFile (
105
- TEST_FILES_PATH . 'BankAccountWithoutUncovered-text -line.txt ' ,
105
+ TEST_FILES_PATH . 'Report/Text/ BankAccountWithoutUncovered-line.txt ' ,
106
106
str_replace (PHP_EOL , "\n" , $ text ->process ($ this ->getCoverageForFilesWithUncoveredExcluded ())),
107
107
);
108
108
}
0 commit comments