Skip to content

Commit f14737e

Browse files
committed
[sachin][added integration test framework, fixed unsubscribe bug for the
client]
1 parent 8d5ea36 commit f14737e

26 files changed

+257
-2001
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
## User settings
66
xcuserdata/
7+
*.xcodeproj
78

89
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
910
*.xcscmblueprint

Package.resolved

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ let package = Package(
1414
// Dependencies declare other packages that this package depends on.
1515
.package(url: "https://github.com/daltoniam/Starscream.git", .exact("3.1.1")),
1616
.package(url: "https://github.com/alibaba/HandyJSON.git", .exact("5.0.1")),
17+
.package(url: "https://github.com/Quick/Quick.git", .exact("2.2.0")),
18+
.package(url: "https://github.com/Quick/Nimble.git", .exact("8.0.2")),
19+
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "5.0.0")
1720
],
1821
targets: [
1922
.target(
@@ -28,7 +31,17 @@ let package = Package(
2831
"ScClient",
2932
]),
3033
.testTarget(
31-
name: "ScClientTests",
32-
dependencies: ["ScClient"])
34+
name: "Integration",
35+
dependencies: [
36+
"ScClient",
37+
"Quick",
38+
"Nimble",
39+
"RxSwift"
40+
]),
41+
.testTarget(
42+
name: "Unit",
43+
dependencies: [
44+
"ScClient"
45+
])
3346
]
3447
)

ScClient.xcodeproj/HandyJSON_Info.plist

Lines changed: 0 additions & 25 deletions
This file was deleted.

ScClient.xcodeproj/ScClientTests_Info.plist

Lines changed: 0 additions & 25 deletions
This file was deleted.

ScClient.xcodeproj/ScClient_Info.plist

Lines changed: 0 additions & 25 deletions
This file was deleted.

ScClient.xcodeproj/Starscream_Info.plist

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)