Skip to content

Commit 26eddc2

Browse files
author
Mateusz Zajac
committed
Create test case but need assertions
1 parent 226ca51 commit 26eddc2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

XcodeServerSDKTests/IntegrationTests.swift

+7-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,13 @@ class IntegrationTests: XCTestCase {
6565

6666
let exp = self.expectationWithDescription("Network")
6767
let server = self.getRecordingXcodeServer("get_integration_issues")
68-
// server.getIntegrationIssues(<#T##integrationId: String##String#>, completion: <#T##(integrationIssues: IntegrationIssues?, error: ErrorType?) -> ()#>)
68+
server.getIntegrationIssues("960f6989b4c7289433ff04db71033d28") { (integrationIssues, error) -> () in
69+
XCTAssertNil(error, "Error should be nil")
70+
71+
exp.fulfill()
72+
}
73+
74+
self.waitForExpectationsWithTimeout(10, handler: nil)
6975

7076
}
7177

0 commit comments

Comments
 (0)