├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── SwiftTestingTestableCombinePublishers │ ├── SwiftTestingExpectation.swift │ └── SwiftTestingPublisherExpectation.swift ├── TestableCombinePublishers │ └── PublisherExpectation.swift └── TestableCombinePublishersUtility │ ├── AutomaticallyEquatable.swift │ └── withTimeout.swift ├── Tests ├── SwiftTestingTestableCombinePublishersTests │ ├── ExampleTest.swift │ └── SwiftTestingTestableCombinePublishersTests.swift ├── TestableCombinePublishersTests │ ├── ExampleTest.swift │ └── TestableCombinePublishersTests.swift └── TestableCombinePublishersUtilityTests │ └── AutomaticallyEquatableTests.swift ├── example_swift_testing.png └── example_xctest.png /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SwiftTestingTestableCombinePublishers/SwiftTestingExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Sources/SwiftTestingTestableCombinePublishers/SwiftTestingExpectation.swift -------------------------------------------------------------------------------- /Sources/SwiftTestingTestableCombinePublishers/SwiftTestingPublisherExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Sources/SwiftTestingTestableCombinePublishers/SwiftTestingPublisherExpectation.swift -------------------------------------------------------------------------------- /Sources/TestableCombinePublishers/PublisherExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Sources/TestableCombinePublishers/PublisherExpectation.swift -------------------------------------------------------------------------------- /Sources/TestableCombinePublishersUtility/AutomaticallyEquatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Sources/TestableCombinePublishersUtility/AutomaticallyEquatable.swift -------------------------------------------------------------------------------- /Sources/TestableCombinePublishersUtility/withTimeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Sources/TestableCombinePublishersUtility/withTimeout.swift -------------------------------------------------------------------------------- /Tests/SwiftTestingTestableCombinePublishersTests/ExampleTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Tests/SwiftTestingTestableCombinePublishersTests/ExampleTest.swift -------------------------------------------------------------------------------- /Tests/SwiftTestingTestableCombinePublishersTests/SwiftTestingTestableCombinePublishersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Tests/SwiftTestingTestableCombinePublishersTests/SwiftTestingTestableCombinePublishersTests.swift -------------------------------------------------------------------------------- /Tests/TestableCombinePublishersTests/ExampleTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Tests/TestableCombinePublishersTests/ExampleTest.swift -------------------------------------------------------------------------------- /Tests/TestableCombinePublishersTests/TestableCombinePublishersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Tests/TestableCombinePublishersTests/TestableCombinePublishersTests.swift -------------------------------------------------------------------------------- /Tests/TestableCombinePublishersUtilityTests/AutomaticallyEquatableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/Tests/TestableCombinePublishersUtilityTests/AutomaticallyEquatableTests.swift -------------------------------------------------------------------------------- /example_swift_testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/example_swift_testing.png -------------------------------------------------------------------------------- /example_xctest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertbori/TestableCombinePublishers/HEAD/example_xctest.png --------------------------------------------------------------------------------