Actualize XCTestManifests.swift

This commit is contained in:
Sergej Jaskiewicz
2019-07-08 18:18:14 +03:00
parent 4dbc8cc09b
commit 74e1c1ae32
2 changed files with 18 additions and 15 deletions
+1
View File
@@ -11,4 +11,5 @@ import OpenCombineTests
var tests = [XCTestCaseEntry]()
tests += OpenCombineTests.allTests()
XCTMain(tests)
+17 -15
View File
@@ -10,31 +10,33 @@ import XCTest
#if !canImport(ObjectiveC)
public func allTests() -> [XCTestCaseEntry] {
return [
testCase(SubscribersDemandTests.allTests),
testCase(CompletionTests.allTests),
testCase(PassthroughSubjectTests.allTests),
testCase(CurrentValueSubjectTests.allTests),
testCase(ImmediateSchedulerTests.allTests),
testCase(AnySubscriberTests.allTests),
testCase(AnyCancellableTests.allTests),
testCase(AnyPublisherTests.allTests),
testCase(AnySubjectTests.allTests),
testCase(PublisherTests.allTests),
testCase(CombineIdentifierTests.allTests),
testCase(AnyCancellableTests.allTests),
testCase(MulticastTests.allTests),
testCase(AssignTests.allTests),
testCase(SinkTests.allTests),
testCase(DropWhileTests.allTests),
testCase(CombineIdentifierTests.allTests),
testCase(CompletionTests.allTests),
testCase(CurrentValueSubjectTests.allTests),
testCase(DecodeTests.allTests),
testCase(EncodeTests.allTests),
testCase(MapTests.allTests),
testCase(DropWhileTests.allTests),
testCase(EmptyTests.allTests),
testCase(EncodeTests.allTests),
testCase(FailTests.allTests),
testCase(ImmediateSchedulerTests.allTests),
testCase(JustTests.allTests),
testCase(MapErrorTests.allTests),
testCase(MapTests.allTests),
testCase(MulticastTests.allTests),
testCase(OnceTests.allTests),
testCase(OptionalTests.allTests),
testCase(FailTests.allTests),
testCase(PassthroughSubjectTests.allTests),
testCase(PrintTests.allTests),
testCase(PublisherTests.allTests),
testCase(ReplaceNilTests.allTests),
testCase(SequenceTests.allTests),
testCase(SinkTests.allTests),
testCase(SubscribersDemandTests.allTests),
]
}
#endif