Skip to content

Commit b636afc

Browse files
committed
Add SPI
1 parent 0515c06 commit b636afc

File tree

39 files changed

+50
-50
lines changed

39 files changed

+50
-50
lines changed

SentryTestUtilsTests/TestDispatchFactoryTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
@testable import Sentry
2-
@testable import SentryTestUtils
1+
@_spi(Private) @testable import Sentry
2+
@_spi(Private) @testable import SentryTestUtils
33
import XCTest
44

55
/// This test suite is not intended to test the actual functionality of the dispatch factory,

Tests/SentryProfilerTests/SentryProfileTestFixture.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import _SentryPrivate
22
@testable import Sentry
3-
import SentryTestUtils
3+
@_spi(Private) import SentryTestUtils
44
import XCTest
55

66
#if os(iOS) || os(macOS) || targetEnvironment(macCatalyst)

Tests/SentryProfilerTests/SentryTraceProfilerTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import _SentryPrivate
22
@_spi(Private) @testable import Sentry
3-
import SentryTestUtils
3+
@_spi(Private) import SentryTestUtils
44
import XCTest
55

66
#if os(iOS) || os(macOS) || targetEnvironment(macCatalyst)

Tests/SentryTests/Helper/SentryAppStateManagerTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import SentryTestUtils
1+
@_spi(Private) import SentryTestUtils
22
import XCTest
33

44
#if os(iOS) || os(tvOS) || targetEnvironment(macCatalyst)

Tests/SentryTests/Helper/SentryDependencyContainerTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@_spi(Private) @testable import Sentry
2-
import SentryTestUtils
2+
@_spi(Private) import SentryTestUtils
33
import XCTest
44

55
final class SentryDependencyContainerTests: XCTestCase {

Tests/SentryTests/Helper/SentryFileManagerTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// swiftlint:disable file_length
22

33
@_spi(Private) @testable import Sentry
4-
import SentryTestUtils
4+
@_spi(Private) import SentryTestUtils
55
import XCTest
66

77
class SentryFileManagerTests: XCTestCase {

Tests/SentryTests/Integrations/ANR/SentryANRTrackingIntegrationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@_spi(Private) @testable import Sentry
2-
import SentryTestUtils
2+
@_spi(Private) import SentryTestUtils
33
import XCTest
44

55
class SentryANRTrackingIntegrationTests: SentrySDKIntegrationTestsBase {

Tests/SentryTests/Integrations/Performance/AppStartTracking/SentryAppStartTrackerTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
@testable import Sentry
2-
import SentryTestUtils
1+
@_spi(Private) @testable import Sentry
2+
@_spi(Private) import SentryTestUtils
33
import XCTest
44

55
#if os(iOS) || os(tvOS) || targetEnvironment(macCatalyst)

Tests/SentryTests/Integrations/Performance/FramesTracking/SentryFramesTrackerTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@testable import _SentryPrivate
2-
@testable import Sentry
3-
import SentryTestUtils
2+
@_spi(Private) @testable import Sentry
3+
@_spi(Private) import SentryTestUtils
44
import XCTest
55

66
#if os(iOS) || os(tvOS) || targetEnvironment(macCatalyst)

Tests/SentryTests/Integrations/Performance/SentrySubClassFinderTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import ObjectiveC
2-
import SentryTestUtils
2+
@_spi(Private) import SentryTestUtils
33
import XCTest
44

55
#if os(iOS) || os(tvOS) || targetEnvironment(macCatalyst)

0 commit comments

Comments
 (0)