diff --git a/Tests/GRPCTests/GRPCInteroperabilityTests.swift b/Tests/GRPCTests/GRPCInteroperabilityTests.swift index e86c9b452..86c0b0d2e 100644 --- a/Tests/GRPCTests/GRPCInteroperabilityTests.swift +++ b/Tests/GRPCTests/GRPCInteroperabilityTests.swift @@ -170,88 +170,6 @@ class GRPCInsecureInteroperabilityTests: GRPCTestCase { } } -#if canImport(NIOSSL) -class GRPCSecureInteroperabilityTests: GRPCInsecureInteroperabilityTests { - override var useTLS: Bool { return true } - - override func testEmptyUnary() { - super.testEmptyUnary() - } - - override func testCacheableUnary() { - super.testCacheableUnary() - } - - override func testLargeUnary() { - super.testLargeUnary() - } - - override func testClientCompressedUnary() { - super.testClientCompressedUnary() - } - - override func testServerCompressedUnary() { - super.testServerCompressedUnary() - } - - override func testClientStreaming() { - super.testClientStreaming() - } - - override func testClientCompressedStreaming() { - super.testClientCompressedStreaming() - } - - override func testServerStreaming() { - super.testServerStreaming() - } - - override func testServerCompressedStreaming() { - super.testServerCompressedStreaming() - } - - override func testPingPong() { - super.testPingPong() - } - - override func testEmptyStream() { - super.testEmptyStream() - } - - override func testCustomMetadata() { - super.testCustomMetadata() - } - - override func testStatusCodeAndMessage() { - super.testStatusCodeAndMessage() - } - - override func testSpecialStatusAndMessage() { - super.testSpecialStatusAndMessage() - } - - override func testUnimplementedMethod() { - super.testUnimplementedMethod() - } - - override func testUnimplementedService() { - super.testUnimplementedService() - } - - override func testCancelAfterBegin() { - super.testCancelAfterBegin() - } - - override func testCancelAfterFirstResponse() { - super.testCancelAfterFirstResponse() - } - - override func testTimeoutOnSleepingServer() { - super.testTimeoutOnSleepingServer() - } -} -#endif // canImport(NIOSSL) - @available(macOS 12, iOS 15, tvOS 15, watchOS 8, *) class GRPCInsecureInteroperabilityAsyncTests: GRPCInsecureInteroperabilityTests { override func makeProvider() -> CallHandlerProvider { @@ -334,86 +252,3 @@ class GRPCInsecureInteroperabilityAsyncTests: GRPCInsecureInteroperabilityTests super.testClientCompressedUnary() } } - -#if canImport(NIOSSL) -@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *) -class GRPCSecureInteroperabilityAsyncTests: GRPCInsecureInteroperabilityAsyncTests { - override var useTLS: Bool { return true } - - override func testServerStreaming() { - super.testServerStreaming() - } - - override func testLargeUnary() { - super.testLargeUnary() - } - - override func testServerCompressedUnary() { - super.testServerCompressedUnary() - } - - override func testUnimplementedMethod() { - super.testUnimplementedMethod() - } - - override func testServerCompressedStreaming() { - super.testServerCompressedStreaming() - } - - override func testCustomMetadata() { - super.testCustomMetadata() - } - - override func testCancelAfterBegin() { - super.testCancelAfterBegin() - } - - override func testClientStreaming() { - super.testClientStreaming() - } - - override func testCacheableUnary() { - super.testCacheableUnary() - } - - override func testSpecialStatusAndMessage() { - super.testSpecialStatusAndMessage() - } - - override func testTimeoutOnSleepingServer() { - super.testTimeoutOnSleepingServer() - } - - override func testClientCompressedUnary() { - super.testClientCompressedUnary() - } - - override func testStatusCodeAndMessage() { - super.testStatusCodeAndMessage() - } - - override func testCancelAfterFirstResponse() { - super.testCancelAfterFirstResponse() - } - - override func testPingPong() { - super.testPingPong() - } - - override func testEmptyStream() { - super.testEmptyStream() - } - - override func testEmptyUnary() { - super.testEmptyUnary() - } - - override func testUnimplementedService() { - super.testUnimplementedService() - } - - override func testClientCompressedStreaming() { - super.testClientCompressedStreaming() - } -} -#endif // canImport(NIOSSL)