Skip to content

Commit 6e9db80

Browse files
committed
add test
1 parent 81da920 commit 6e9db80

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.konfigignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Tests/SimpleTest.swift

Tests/SimpleTest.swift

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
@testable import AutomationTestWithSubmodules
2+
3+
import XCTest
4+
5+
class SimpleTest: XCTestCase {
6+
var client: AutomationTestWithSubmodulesClient!
7+
8+
override func setUpWithError() throws {
9+
self.client = AutomationTestWithSubmodulesClient(
10+
apiKey: "API_KEY"
11+
)
12+
}
13+
14+
override func tearDownWithError() throws {}
15+
16+
func testClient() async throws {
17+
let expectation = XCTestExpectation(description: "Client is not null")
18+
if self.client != nil {
19+
expectation.fulfill()
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)