Skip to content

Commit a74caad

Browse files
Remove test prefixes from MiniMakeTests
1 parent fea6728 commit a74caad

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Plugins/PackageToJS/Tests/MiniMakeTests.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Testing
55

66
@Suite struct MiniMakeTests {
77
// Test basic task management functionality
8-
@Test func testBasicTaskManagement() throws {
8+
@Test func basicTaskManagement() throws {
99
try withTemporaryDirectory { tempDir in
1010
var make = MiniMake(printProgress: { _, _, _, _ in })
1111
let outputPath = tempDir.appendingPathComponent("output.txt").path
@@ -21,7 +21,7 @@ import Testing
2121
}
2222

2323
// Test that task dependencies are handled correctly
24-
@Test func testTaskDependencies() throws {
24+
@Test func taskDependencies() throws {
2525
try withTemporaryDirectory { tempDir in
2626
var make = MiniMake(printProgress: { _, _, _, _ in })
2727
let input = tempDir.appendingPathComponent("input.txt").path
@@ -51,7 +51,7 @@ import Testing
5151
}
5252

5353
// Test that phony tasks are always rebuilt
54-
@Test func testPhonyTask() throws {
54+
@Test func phonyTask() throws {
5555
try withTemporaryDirectory { tempDir in
5656
var make = MiniMake(printProgress: { _, _, _, _ in })
5757
let outputPath = tempDir.appendingPathComponent("phony.txt").path
@@ -71,7 +71,7 @@ import Testing
7171
}
7272

7373
// Test that the same build graph produces stable fingerprints
74-
@Test func testFingerprintStability() throws {
74+
@Test func fingerprintStability() throws {
7575
var make1 = MiniMake(printProgress: { _, _, _, _ in })
7676
var make2 = MiniMake(printProgress: { _, _, _, _ in })
7777

@@ -87,7 +87,7 @@ import Testing
8787
}
8888

8989
// Test that rebuilds are controlled by timestamps
90-
@Test func testTimestampBasedRebuild() throws {
90+
@Test func timestampBasedRebuild() throws {
9191
try withTemporaryDirectory { tempDir in
9292
var make = MiniMake(printProgress: { _, _, _, _ in })
9393
let input = tempDir.appendingPathComponent("input.txt").path
@@ -118,7 +118,7 @@ import Testing
118118
}
119119

120120
// Test that silent tasks execute without output
121-
@Test func testSilentTask() throws {
121+
@Test func silentTask() throws {
122122
try withTemporaryDirectory { tempDir in
123123
var messages: [(String, Int, Int, String)] = []
124124
var make = MiniMake(
@@ -146,7 +146,7 @@ import Testing
146146
}
147147

148148
// Test that error cases are handled appropriately
149-
@Test func testErrorWhileBuilding() throws {
149+
@Test func errorWhileBuilding() throws {
150150
struct BuildError: Error {}
151151
try withTemporaryDirectory { tempDir in
152152
var make = MiniMake(printProgress: { _, _, _, _ in })
@@ -163,7 +163,7 @@ import Testing
163163
}
164164

165165
// Test that cleanup functionality works correctly
166-
@Test func testCleanup() throws {
166+
@Test func cleanup() throws {
167167
try withTemporaryDirectory { tempDir in
168168
var make = MiniMake(printProgress: { _, _, _, _ in })
169169
let outputs = [

0 commit comments

Comments
 (0)