@@ -9,11 +9,11 @@ final class XCSchemeIntegrationTests: XCTestCase {
9
9
assert ( scheme: subject)
10
10
}
11
11
12
- func test_write_iosScheme( ) {
13
- testWrite ( from: iosSchemePath,
14
- initModel: { try ? XCScheme ( path: $0) } ,
15
- modify: { $0 } ,
16
- assertion: { assert ( scheme: $1) } )
12
+ func test_write_iosScheme( ) throws {
13
+ try testWrite ( from: iosSchemePath,
14
+ initModel: { try ? XCScheme ( path: $0) } ,
15
+ modify: { $0 } ,
16
+ assertion: { assert ( scheme: $1) } )
17
17
}
18
18
19
19
func test_read_write_produces_no_diff( ) throws {
@@ -42,11 +42,11 @@ final class XCSchemeIntegrationTests: XCTestCase {
42
42
XCTAssertEqual ( remoteRunnable. remotePath, " /var/containers/Bundle/Application/018F0933-05E8-4359-9955-39E0523C4246/Ava.app " )
43
43
}
44
44
45
- func test_write_runnableWithoutBuildableReferenceScheme( ) {
46
- testWrite ( from: runnableWithoutBuildableReferenceSchemePath,
47
- initModel: { try ? XCScheme ( path: $0) } ,
48
- modify: { $0 } ,
49
- assertion: { assert ( runnableWithoutBuildableReferenceScheme: $1) } )
45
+ func test_write_runnableWithoutBuildableReferenceScheme( ) throws {
46
+ try testWrite ( from: runnableWithoutBuildableReferenceSchemePath,
47
+ initModel: { try ? XCScheme ( path: $0) } ,
48
+ modify: { $0 } ,
49
+ assertion: { assert ( runnableWithoutBuildableReferenceScheme: $1) } )
50
50
}
51
51
52
52
func test_read_minimalScheme( ) {
@@ -58,11 +58,11 @@ final class XCSchemeIntegrationTests: XCTestCase {
58
58
}
59
59
}
60
60
61
- func test_write_minimalScheme( ) {
62
- testWrite ( from: minimalSchemePath,
63
- initModel: { try ? XCScheme ( path: $0) } ,
64
- modify: { $0 } ,
65
- assertion: { assert ( minimalScheme: $1) } )
61
+ func test_write_minimalScheme( ) throws {
62
+ try testWrite ( from: minimalSchemePath,
63
+ initModel: { try ? XCScheme ( path: $0) } ,
64
+ modify: { $0 } ,
65
+ assertion: { assert ( minimalScheme: $1) } )
66
66
}
67
67
68
68
func test_write_testableReferenceDefaultAttributesValuesAreOmitted( ) {
0 commit comments