質問編集履歴
5
書式の改善。
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
UITestを実行し
|
1
|
+
UITestを実行し、「Succeed UITest」としたい。
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
UITestを実行し、
|
5
|
+
UITestを実行したいが、`Failed to get matching`となってしまう。
|
6
6
|
|
7
7
|
|
8
8
|
|
4
書式の改善。
test
CHANGED
File without changes
|
test
CHANGED
@@ -17,6 +17,8 @@
|
|
17
17
|
`Failed to get matching snapshots: Application com.example.kazuki.CodeCheck-Test-Yumemi-2 is not running`が出てしまいます。
|
18
18
|
|
19
19
|
|
20
|
+
|
21
|
+
解決策を教えて頂きたいです。
|
20
22
|
|
21
23
|
(ビルドは成功します。)
|
22
24
|
|
3
書式の改善。
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
UITestが
|
1
|
+
UITestを実行したいが、Failed to get matchingとなってしまう。
|
test
CHANGED
@@ -38,7 +38,7 @@
|
|
38
38
|
|
39
39
|
/// 取得できたセルの数の検査
|
40
40
|
|
41
|
-
XCTAssertEqual(cells.count, repo.count)
|
41
|
+
XCTAssertEqual(cells.count, repo.count) // Failed to get matching snapshots: Application com.example.kazuki.CodeCheck-Test-Yumemi-2 is not running
|
42
42
|
|
43
43
|
}
|
44
44
|
|
2
書式の改善。
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,25 +10,37 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
|
13
|
+
現在2つのテストを実行しようとしていますが、両方に
|
14
14
|
|
15
|
+
|
16
|
+
|
17
|
+
`Failed to get matching snapshots: Application com.example.kazuki.CodeCheck-Test-Yumemi-2 is not running`が出てしまいます。
|
18
|
+
|
19
|
+
|
20
|
+
|
15
|
-
ビルドは成功します。
|
21
|
+
(ビルドは成功します。)
|
16
22
|
|
17
23
|
|
18
24
|
|
19
25
|
```swift
|
20
26
|
|
21
|
-
|
27
|
+
let app = XCUIApplication()
|
22
28
|
|
23
|
-
|
29
|
+
var repo: [[String: Any]] = []
|
24
30
|
|
25
|
-
|
31
|
+
|
26
32
|
|
27
|
-
|
33
|
+
func testChecked() {
|
28
34
|
|
29
|
-
|
35
|
+
/// app配下のcellで指定したAccessibility IDに合致するものを全て取得する
|
30
36
|
|
37
|
+
let cells = self.app.cells.matching(identifier: "TestCell")
|
38
|
+
|
31
|
-
|
39
|
+
/// 取得できたセルの数の検査
|
40
|
+
|
41
|
+
XCTAssertEqual(cells.count, repo.count)
|
42
|
+
|
43
|
+
}
|
32
44
|
|
33
45
|
|
34
46
|
|
@@ -72,19 +84,21 @@
|
|
72
84
|
|
73
85
|
let app = XCUIApplication()
|
74
86
|
|
87
|
+
var repo: [[String: Any]] = []
|
88
|
+
|
75
89
|
|
76
90
|
|
77
|
-
|
91
|
+
func testChecked() {
|
78
92
|
|
79
|
-
|
93
|
+
/// app配下のcellで指定したAccessibility IDに合致するものを全て取得する
|
80
94
|
|
81
|
-
|
95
|
+
let cells = self.app.cells.matching(identifier: "TestCell")
|
82
96
|
|
83
|
-
|
97
|
+
/// 取得できたセルの数の検査
|
84
98
|
|
85
|
-
|
99
|
+
XCTAssertEqual(cells.count, repo.count)
|
86
100
|
|
87
|
-
|
101
|
+
}
|
88
102
|
|
89
103
|
|
90
104
|
|
1
書式の改善。
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,17 +18,17 @@
|
|
18
18
|
|
19
19
|
```swift
|
20
20
|
|
21
|
-
func testChecked() {
|
21
|
+
// func testChecked() {
|
22
22
|
|
23
|
-
/// app配下のcellで指定したAccessibility IDに合致するものを全て取得する
|
23
|
+
// /// app配下のcellで指定したAccessibility IDに合致するものを全て取得する
|
24
24
|
|
25
|
-
let cells = self.app.cells.matching(identifier: "TestCell")
|
25
|
+
// let cells = self.app.cells.matching(identifier: "TestCell")
|
26
26
|
|
27
|
-
/// 取得できたセルの数の検査
|
27
|
+
// /// 取得できたセルの数の検査
|
28
28
|
|
29
|
-
XCTAssertEqual(cells.count, 1001)
|
29
|
+
// XCTAssertEqual(cells.count, 1001)
|
30
30
|
|
31
|
-
}
|
31
|
+
// }
|
32
32
|
|
33
33
|
|
34
34
|
|
@@ -36,7 +36,7 @@
|
|
36
36
|
|
37
37
|
let label = XCUIApplication().staticTexts["RepositoryTitle"]
|
38
38
|
|
39
|
-
XCTAssertTrue(label.isEnabled)
|
39
|
+
XCTAssertTrue(label.isEnabled) // Failed to get matching snapshots: Application com.example.kazuki.CodeCheck-Test-Yumemi-2 is not running
|
40
40
|
|
41
41
|
}
|
42
42
|
|
@@ -74,17 +74,17 @@
|
|
74
74
|
|
75
75
|
|
76
76
|
|
77
|
-
func testChecked() {
|
77
|
+
// func testChecked() {
|
78
78
|
|
79
|
-
/// app配下のcellで指定したAccessibility IDに合致するものを全て取得する
|
79
|
+
// /// app配下のcellで指定したAccessibility IDに合致するものを全て取得する
|
80
80
|
|
81
|
-
let cells = self.app.cells.matching(identifier: "TestCell")
|
81
|
+
// let cells = self.app.cells.matching(identifier: "TestCell")
|
82
82
|
|
83
|
-
/// 取得できたセルの数の検査
|
83
|
+
// /// 取得できたセルの数の検査
|
84
84
|
|
85
|
-
XCTAssertEqual(cells.count, 1001)
|
85
|
+
// XCTAssertEqual(cells.count, 1001)
|
86
86
|
|
87
|
-
}
|
87
|
+
// }
|
88
88
|
|
89
89
|
|
90
90
|
|