File tree 5 files changed +63
-0
lines changed
5 files changed +63
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Mac
2
+ .DS_Store
3
+
4
+ # Xcode
5
+ xcuserdata /
6
+ * .xcuserstate
7
+ DerivedData /
8
+
9
+ # Swift Package Manager
10
+ /* .xcodeproj
11
+ /.build
12
+ /.swiftpm
13
+
14
+ # Test
15
+ TestResults /
Original file line number Diff line number Diff line change
1
+ // swift-tools-version: 5.10
2
+
3
+ import PackageDescription
4
+
5
+ let swiftSettings : [ SwiftSetting ] = [
6
+ . enableExperimentalFeature( " StrictConcurrency " ) ,
7
+ . enableUpcomingFeature( " ExistentialAny " ) ,
8
+ . enableUpcomingFeature( " GlobalConcurrency " ) ,
9
+ ]
10
+
11
+ let package = Package (
12
+ name: " KintoneAPI " ,
13
+ platforms: [
14
+ . iOS( . v17) ,
15
+ . macOS( . v14) ,
16
+ ] ,
17
+ products: [
18
+ . library(
19
+ name: " KintoneAPI " ,
20
+ targets: [ " KintoneAPI " ]
21
+ ) ,
22
+ ] ,
23
+ targets: [
24
+ . target(
25
+ name: " KintoneAPI " ,
26
+ swiftSettings: swiftSettings
27
+ ) ,
28
+ . testTarget(
29
+ name: " KintoneAPITests " ,
30
+ dependencies: [ " KintoneAPI " ] ,
31
+ swiftSettings: swiftSettings
32
+ ) ,
33
+ ]
34
+ )
Original file line number Diff line number Diff line change
1
+ // The Swift Programming Language
2
+ // https://docs.swift.org/swift-book
Original file line number Diff line number Diff line change
1
+ import XCTest
2
+ @testable import KintoneAPI
3
+
4
+ final class KintoneAPITests : XCTestCase {
5
+ func testExample( ) throws {
6
+ // XCTest Documentation
7
+ // https://developer.apple.com/documentation/xctest
8
+
9
+ // Defining Test Cases and Test Methods
10
+ // https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods
11
+ }
12
+ }
You can’t perform that action at this time.
0 commit comments