Skip to content

Commit b297a61

Browse files
committed
WIP
1 parent aabc46b commit b297a61

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+44
-0
lines changed

Tests/Tests/ViewTypes/ColorPickerTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import SwiftUIIntrospect
44
import XCTest
55

66
@available(iOS 14, macOS 11, *)
7+
@MainActor
78
final class ColorPickerTests: XCTestCase {
89
#if canImport(UIKit)
910
typealias PlatformColor = UIColor

Tests/Tests/ViewTypes/DatePickerTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import SwiftUI
33
import SwiftUIIntrospect
44
import XCTest
55

6+
@MainActor
67
final class DatePickerTests: XCTestCase {
78
#if canImport(UIKit)
89
typealias PlatformDatePicker = UIDatePicker

Tests/Tests/ViewTypes/DatePickerWithCompactFieldStyleTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import SwiftUIIntrospect
44
import XCTest
55

66
@available(iOS 14, macOS 10.15.4, *)
7+
@MainActor
78
final class DatePickerWithCompactStyleTests: XCTestCase {
89
#if canImport(UIKit)
910
typealias PlatformDatePickerWithCompactStyle = UIDatePicker

Tests/Tests/ViewTypes/DatePickerWithGraphicalStyleTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import SwiftUIIntrospect
44
import XCTest
55

66
@available(iOS 14, *)
7+
@MainActor
78
final class DatePickerWithGraphicalStyleTests: XCTestCase {
89
#if canImport(UIKit)
910
typealias PlatformDatePickerWithGraphicalStyle = UIDatePicker

Tests/Tests/ViewTypes/DatePickerWithWheelStyleTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import SwiftUI
33
import SwiftUIIntrospect
44
import XCTest
55

6+
@MainActor
67
final class DatePickerWithWheelStyleTests: XCTestCase {
78
#if canImport(UIKit)
89
typealias PlatformDatePickerWithWheelStyle = UIDatePicker

Tests/Tests/ViewTypes/FormTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import SwiftUI
33
import SwiftUIIntrospect
44
import XCTest
55

6+
@MainActor
67
final class FormTests: XCTestCase {
78
#if canImport(UIKit)
89
typealias PlatformForm = UIScrollView // covers both UITableView and UICollectionView

Tests/Tests/ViewTypes/FormWithGroupedStyleTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import SwiftUIIntrospect
33
import XCTest
44

55
@available(iOS 16, tvOS 16, macOS 13, *)
6+
@MainActor
67
final class FormWithGroupedStyleTests: XCTestCase {
78
#if canImport(UIKit)
89
typealias PlatformFormWithGroupedStyle = UIScrollView // covers both UITableView and UICollectionView

Tests/Tests/ViewTypes/FullScreenCoverTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import SwiftUIIntrospect
44
import XCTest
55

66
@available(iOS 14, tvOS 14, *)
7+
@MainActor
78
final class FullScreenCoverTests: XCTestCase {
89
func testPresentationAsFullScreenCover() throws {
910
guard #available(iOS 14, tvOS 14, *) else {

Tests/Tests/ViewTypes/ListCellTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import SwiftUI
22
import SwiftUIIntrospect
33
import XCTest
44

5+
@MainActor
56
final class ListCellTests: XCTestCase {
67
#if canImport(UIKit)
78
typealias PlatformListCell = UIView // covers both UITableViewCell and UICollectionViewCell

Tests/Tests/ViewTypes/ListTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import SwiftUI
22
import SwiftUIIntrospect
33
import XCTest
44

5+
@MainActor
56
final class ListTests: XCTestCase {
67
#if canImport(UIKit)
78
typealias PlatformList = UIScrollView // covers both UITableView and UICollectionView

0 commit comments

Comments
 (0)