File tree 4 files changed +17
-4
lines changed
FoundationNetworking/Resources
4 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 5
5
<key >CFBundleDevelopmentRegion </key >
6
6
<string >en </string >
7
7
<key >CFBundleExecutable </key >
8
- <string >SwiftFoundation </string >
8
+ <string >SwiftFoundationNetworking </string >
9
9
<key >CFBundleIdentifier </key >
10
10
<string >$(PRODUCT_BUNDLE_IDENTIFIER) </string >
11
11
<key >CFBundleInfoDictionaryVersion </key >
Original file line number Diff line number Diff line change 5
5
<key >CFBundleDevelopmentRegion </key >
6
6
<string >en </string >
7
7
<key >CFBundleExecutable </key >
8
- <string >SwiftFoundation </string >
8
+ <string >SwiftFoundationXML </string >
9
9
<key >CFBundleIdentifier </key >
10
10
<string >$(PRODUCT_BUNDLE_IDENTIFIER) </string >
11
11
<key >CFBundleInfoDictionaryVersion </key >
Original file line number Diff line number Diff line change 11
11
//This is a very rudimentary FTP server written plainly for testing URLSession FTP Implementation.
12
12
import Dispatch
13
13
14
+ #if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
15
+ #if canImport(SwiftFoundation) && !DEPLOYMENT_RUNTIME_OBJC
16
+ @testable import SwiftFoundation
17
+ #else
18
+ @testable import Foundation
19
+ #endif
20
+ #endif
21
+
14
22
#if canImport(Glibc)
15
23
import Glibc
16
24
#elseif canImport(Darwin)
Original file line number Diff line number Diff line change 7
7
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
8
8
//
9
9
10
- import Foundation
11
- import XCTest
10
+ #if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
11
+ #if canImport(SwiftFoundation) && !DEPLOYMENT_RUNTIME_OBJC
12
+ @testable import SwiftFoundation
13
+ #else
14
+ @testable import Foundation
15
+ #endif
16
+ #endif
12
17
13
18
class TestDecimal : XCTestCase {
14
19
You can’t perform that action at this time.
0 commit comments