Skip to content

Commit 240e94f

Browse files
committed
Rename TestHelpers to BarcTestHelpers to match other targets
1 parent 3b26de1 commit 240e94f

File tree

20 files changed

+24
-59
lines changed

20 files changed

+24
-59
lines changed

Modules/Defaults/Tests/UserDefaultsProviderTests.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
// Copyright © 2025 Cocoatype, LLC. All rights reserved.
33

44
import Foundation
5-
import TestHelpers
65
import Testing
76

7+
import BarcTestHelpers
8+
89
@testable import BarcDefaults
910

1011
struct UserDefaultsProviderTests {

Modules/ErrorHandling/Doubles/StubErrorHandler.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// Copyright © 2023 Cocoatype, LLC. All rights reserved.
33

44
import Foundation
5-
import TestHelpersInterface
65

76
import BarcErrorHandling
7+
import BarcTestHelpersInterface
88

99
public struct StubErrorHandler: ErrorHandler {
1010
public init(

Modules/ErrorHandling/Tests/Sources/StubErrorHandlerTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Created by Geoff Pado on 11/5/23.
22
// Copyright © 2023 Cocoatype, LLC. All rights reserved.
33

4-
import TestHelpers
54
import Testing
65

76
import BarcErrorHandlingDoubles
7+
import BarcTestHelpers
88

99
struct StubErrorHandlerTests {
1010
@MainActor

Modules/Logging/Doubles/SpyLogger.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// Copyright © 2024 Cocoatype, LLC. All rights reserved.
33

44
import Synchronization
5-
import TestHelpersInterface
65

76
import BarcLogging
7+
import BarcTestHelpersInterface
88

99
@available(iOS 18.0, *)
1010
public final class SpyLogger: Logger {

Modules/Menu/Sources/Components/SiteURLCell.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Copyright © 2024 Cocoatype, LLC. All rights reserved.
33

44
import SwiftUI
5-
import TestHelpersInterface
65

6+
import BarcTestHelpersInterface
77
import BarcWeb
88

99
struct SiteURLCell: View {

Modules/Menu/Sources/Sections/Information/ReleasesRouteCell.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
// Copyright © 2024 Cocoatype, LLC. All rights reserved.
33

44
import SwiftUI
5-
import TestHelpersInterface
65

76
import FactoryKit
87

98
import BarcDefaults
109
import BarcReleases
10+
import BarcTestHelpersInterface
1111

1212
struct ReleasesRouteCell: View {
1313
@Injected(\.defaultsProvider) private var defaultsProvider

Modules/Menu/Tests/Components/SiteURLCellTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
// Copyright © 2025 Cocoatype, LLC. All rights reserved.
33

44
import SwiftUI
5-
import TestHelpersInterface
65
import Testing
76
import ViewInspector
87

98
import BarcReleases
9+
import BarcTestHelpersInterface
1010

1111
@testable import BarcMenu
1212

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// Created by Geoff Pado on 1/20/25.
22
// Copyright © 2025 Cocoatype, LLC. All rights reserved.
33

4-
import TestHelpersInterface
54
import ViewInspector
65

6+
import BarcTestHelpersInterface
7+
78
extension Inspection: @retroactive InspectionEmissary, @unchecked Sendable {}

Modules/Onboarding/Tests/Components/PageControlTests.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
// Copyright © 2025 Cocoatype, LLC. All rights reserved.
33

44
import SwiftUI
5-
import TestHelpers
65
import Testing
76
import ViewInspector
87

8+
import BarcTestHelpers
9+
910
@testable import BarcOnboarding
1011

1112
@MainActor

Modules/Purchasing/Doubles/StubPurchaseRepository.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
// Created by Geoff Pado on 9/17/24.
22
// Copyright © 2024 Cocoatype, LLC. All rights reserved.
33

4-
import TestHelpersInterface
5-
64
import BarcPurchasing
5+
import BarcTestHelpersInterface
76

87
public struct StubPurchaseRepository: PurchaseRepository {
98
public init() {}

0 commit comments

Comments
 (0)