Skip to content

Commit 854db17

Browse files
committed
add e2e testing
1 parent a60889c commit 854db17

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
all: install
21
install:
32
carthage update --platform iOS --verbose
43
build: install
@@ -7,4 +6,4 @@ test:
76
echo TODO
87
coverage:
98
slather coverage
10-
.PHONY: test
9+
.PHONY: coverage

ios-app-bootstrapUITests/ios_app_bootstrapUITests.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ class ios_app_bootstrapUITests: XCTestCase {
2828
super.tearDown()
2929
}
3030

31-
func testExample() {
32-
// Use recording to get started writing UI tests.
33-
// Use XCTAssert and related functions to verify your tests produce the correct results.
31+
func testFuncList() {
32+
let app = XCUIApplication()
33+
app.buttons["Login"].tap()
34+
app.buttons["list"].tap()
3435
}
35-
3636
}

0 commit comments

Comments
 (0)