Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ let package = Package(
"CombineUI",
"Nimble",
],
swiftSettings: .swiftSettings,
plugins: [
.plugin(name: SwiftLint.plugin),
]),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UIButtonTests: XCTestCase {

func testTitleColor() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UIControlTests: XCTestCase {

func testControl() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UIDatePickerTests: XCTestCase {

func testCountDownDuration() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UIGestureRecognizerTests: XCTestCase {

func testGestureRecognizer() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UIImageViewTests: XCTestCase {

func testImage() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UILabelTests: XCTestCase {

func testIsEnabled() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UIPageControlTests: XCTestCase {

func testPageIndicatorTintColor() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UIProgressViewTests: XCTestCase {

func testTrackTintColor() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UIRefreshControlTests: XCTestCase {

private final class TestRefreshControl: UIRefreshControl {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UISegmentedControlTests: XCTestCase {

func testIsMomentary() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UISliderTests: XCTestCase {

func testIsContinuous() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UIStepperTests: XCTestCase {

func testIsContinuous() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UISwitchTests: XCTestCase {

func testOnTintColor() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UITextFieldTests: XCTestCase {

func testFont() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UITextViewTests: XCTestCase {

func testIsEditable() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import Nimble
import XCTest

@MainActor
final class UIViewTests: XCTestCase {

func testIsUserInteractionEnabled() {
Expand Down