Defined the MakeURLRequestUseCaseTests test cases to run only on Apple platforms.

This commit is contained in:
Javier Cicchelli 2023-04-28 19:04:55 +02:00
parent 9965deb2a8
commit ada0d65238

View File

@ -10,6 +10,7 @@
//
//===----------------------------------------------------------------------===//
#if os(iOS) || os(macOS) || os(tvOS) || os(watchOS)
import Communications
import Foundation
import XCTest
@ -141,3 +142,4 @@ private struct TestEndpoint: Endpoint {
}
}
#endif