File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ struct IntegrationApp: App {
37
37
)
38
38
)
39
39
}
40
-
40
+
41
41
NavigationLink ( " Binding Animations Test Bench " ) {
42
42
BindingsAnimationsTestBench (
43
43
store: Store (
Original file line number Diff line number Diff line change @@ -17,24 +17,24 @@ final class EscapedWithViewStoreTests: XCTestCase {
17
17
XCTAssertEqual ( app. staticTexts [ " EscapedLabel " ] . value as? String , " 10 " )
18
18
19
19
app. buttons [ " Button " ] . tap ( )
20
-
20
+
21
21
XCTAssertEqual ( app. staticTexts [ " Label " ] . value as? String , " 11 " )
22
22
XCTAssertEqual ( app. staticTexts [ " EscapedLabel " ] . value as? String , " 11 " )
23
-
23
+
24
24
let stepper = app. steppers [ " Stepper " ]
25
-
25
+
26
26
stepper. buttons [ " Increment " ] . tap ( )
27
27
stepper. buttons [ " Increment " ] . tap ( )
28
28
stepper. buttons [ " Increment " ] . tap ( )
29
29
stepper. buttons [ " Increment " ] . tap ( )
30
30
31
31
XCTAssertEqual ( app. staticTexts [ " Label " ] . value as? String , " 15 " )
32
32
XCTAssertEqual ( app. staticTexts [ " EscapedLabel " ] . value as? String , " 15 " )
33
-
33
+
34
34
stepper. buttons [ " Decrement " ] . tap ( )
35
35
stepper. buttons [ " Decrement " ] . tap ( )
36
36
stepper. buttons [ " Decrement " ] . tap ( )
37
-
37
+
38
38
XCTAssertEqual ( app. staticTexts [ " Label " ] . value as? String , " 12 " )
39
39
XCTAssertEqual ( app. staticTexts [ " EscapedLabel " ] . value as? String , " 12 " )
40
40
}
You can’t perform that action at this time.
0 commit comments