@@ -62,12 +62,13 @@ final class MethodImportTests {
6262 }
6363 """
6464
65- @Test func method_helloWorld( ) async throws {
65+ @Test
66+ func method_helloWorld( ) async throws {
6667 let st = Swift2JavaTranslator (
6768 javaPackage: " com.example.swift " ,
6869 swiftModuleName: " __FakeModule "
6970 )
70- st. log. logLevel = . info
71+ st. log. logLevel = . error
7172
7273 try await st. analyze ( swiftInterfacePath: " /fake/Fake.swiftinterface " , text: class_interfaceFile)
7374
@@ -101,12 +102,13 @@ final class MethodImportTests {
101102 )
102103 }
103104
104- @Test func method_globalTakeInt( ) async throws {
105+ @Test
106+ func method_globalTakeInt( ) async throws {
105107 let st = Swift2JavaTranslator (
106108 javaPackage: " com.example.swift " ,
107109 swiftModuleName: " __FakeModule "
108110 )
109- st. log. logLevel = . info
111+ st. log. logLevel = . error
110112
111113 try await st. analyze ( swiftInterfacePath: " /fake/__FakeModule/SwiftFile.swiftinterface " , text: class_interfaceFile)
112114
@@ -142,12 +144,13 @@ final class MethodImportTests {
142144 )
143145 }
144146
145- @Test func method_globalTakeIntLongString( ) async throws {
147+ @Test
148+ func method_globalTakeIntLongString( ) async throws {
146149 let st = Swift2JavaTranslator (
147150 javaPackage: " com.example.swift " ,
148151 swiftModuleName: " __FakeModule "
149152 )
150- st. log. logLevel = . info
153+ st. log. logLevel = . error
151154
152155 try await st. analyze ( swiftInterfacePath: " /fake/__FakeModule/SwiftFile.swiftinterface " , text: class_interfaceFile)
153156
@@ -183,12 +186,13 @@ final class MethodImportTests {
183186 )
184187 }
185188
186- @Test func method_class_helloMemberFunction_self_memorySegment( ) async throws {
189+ @Test
190+ func method_class_helloMemberFunction_self_memorySegment( ) async throws {
187191 let st = Swift2JavaTranslator (
188192 javaPackage: " com.example.swift " ,
189193 swiftModuleName: " __FakeModule "
190194 )
191- st. log. logLevel = . info
195+ st. log. logLevel = . error
192196
193197 try await st. analyze ( swiftInterfacePath: " /fake/__FakeModule/SwiftFile.swiftinterface " , text: class_interfaceFile)
194198
@@ -224,12 +228,13 @@ final class MethodImportTests {
224228 )
225229 }
226230
227- @Test func method_class_helloMemberFunction_self_wrapper( ) async throws {
231+ @Test
232+ func method_class_helloMemberFunction_self_wrapper( ) async throws {
228233 let st = Swift2JavaTranslator (
229234 javaPackage: " com.example.swift " ,
230235 swiftModuleName: " __FakeModule "
231236 )
232- st. log. logLevel = . info
237+ st. log. logLevel = . error
233238
234239 try await st. analyze ( swiftInterfacePath: " /fake/__FakeModule/SwiftFile.swiftinterface " , text: class_interfaceFile)
235240
@@ -265,6 +270,7 @@ final class MethodImportTests {
265270 )
266271 }
267272
273+ @Test
268274 func test_method_class_helloMemberFunction_self_wrapper( ) async throws {
269275 let st = Swift2JavaTranslator (
270276 javaPackage: " com.example.swift " ,
@@ -306,7 +312,8 @@ final class MethodImportTests {
306312 )
307313 }
308314
309- @Test func method_class_helloMemberFunction_wrapper( ) async throws {
315+ @Test
316+ func method_class_helloMemberFunction_wrapper( ) async throws {
310317 let st = Swift2JavaTranslator (
311318 javaPackage: " com.example.swift " ,
312319 swiftModuleName: " __FakeModule "
@@ -339,7 +346,8 @@ final class MethodImportTests {
339346 )
340347 }
341348
342- @Test func method_class_makeInt_wrapper( ) async throws {
349+ @Test
350+ func method_class_makeInt_wrapper( ) async throws {
343351 let st = Swift2JavaTranslator (
344352 javaPackage: " com.example.swift " ,
345353 swiftModuleName: " __FakeModule "
@@ -372,7 +380,8 @@ final class MethodImportTests {
372380 )
373381 }
374382
375- @Test func class_constructor( ) async throws {
383+ @Test
384+ func class_constructor( ) async throws {
376385 let st = Swift2JavaTranslator (
377386 javaPackage: " com.example.swift " ,
378387 swiftModuleName: " __FakeModule "
0 commit comments