We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81da920 commit 6e9db80Copy full SHA for 6e9db80
.konfigignore
@@ -0,0 +1 @@
1
+Tests/SimpleTest.swift
Tests/SimpleTest.swift
@@ -0,0 +1,22 @@
+@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