@@ -15,6 +15,7 @@ extension AlwaysUseLowerCamelCaseTests {
15
15
// `swift test --generate-linuxmain`
16
16
// to regenerate.
17
17
static let __allTests__AlwaysUseLowerCamelCaseTests = [
18
+ ( " testIgnoresUnderscoresInTestNames " , testIgnoresUnderscoresInTestNames) ,
18
19
( " testInvalidVariableCasing " , testInvalidVariableCasing) ,
19
20
]
20
21
}
@@ -47,6 +48,7 @@ extension DoNotUseSemicolonsTests {
47
48
( " testNewlinesAfterSemicolons " , testNewlinesAfterSemicolons) ,
48
49
( " testSemicolonsInMemberLists " , testSemicolonsInMemberLists) ,
49
50
( " testSemicolonsInNestedStatements " , testSemicolonsInNestedStatements) ,
51
+ ( " testSemicolonsSeparatingDoWhile " , testSemicolonsSeparatingDoWhile) ,
50
52
( " testSemicolonUse " , testSemicolonUse) ,
51
53
]
52
54
}
@@ -216,6 +218,8 @@ extension NoParensAroundConditionsTests {
216
218
// to regenerate.
217
219
static let __allTests__NoParensAroundConditionsTests = [
218
220
( " testParensAroundConditions " , testParensAroundConditions) ,
221
+ ( " testParensAroundNestedParenthesizedStatements " , testParensAroundNestedParenthesizedStatements) ,
222
+ ( " testParensAroundNestedUnparenthesizedStatements " , testParensAroundNestedUnparenthesizedStatements) ,
219
223
]
220
224
}
221
225
@@ -245,6 +249,11 @@ extension OneVariableDeclarationPerLineTests {
245
249
// `swift test --generate-linuxmain`
246
250
// to regenerate.
247
251
static let __allTests__OneVariableDeclarationPerLineTests = [
252
+ ( " testCommentPrecedingDeclIsNotRepeated " , testCommentPrecedingDeclIsNotRepeated) ,
253
+ ( " testCommentsPrecedingBindingsAreKept " , testCommentsPrecedingBindingsAreKept) ,
254
+ ( " testInvalidBindingsAreNotDestroyed " , testInvalidBindingsAreNotDestroyed) ,
255
+ ( " testMixedInitializedAndTypedBindings " , testMixedInitializedAndTypedBindings) ,
256
+ ( " testMultipleBindingsWithAccessorsAreCorrected " , testMultipleBindingsWithAccessorsAreCorrected) ,
248
257
( " testMultipleVariableBindings " , testMultipleVariableBindings) ,
249
258
( " testNestedVariableBindings " , testNestedVariableBindings) ,
250
259
]
@@ -316,7 +325,11 @@ extension UseLetInEveryBoundCaseVariableTests {
316
325
// `swift test --generate-linuxmain`
317
326
// to regenerate.
318
327
static let __allTests__UseLetInEveryBoundCaseVariableTests = [
319
- ( " testInvalidLetBoundCase " , testInvalidLetBoundCase) ,
328
+ ( " testForCase " , testForCase) ,
329
+ ( " testGuardCase " , testGuardCase) ,
330
+ ( " testIfCase " , testIfCase) ,
331
+ ( " testSwitchCase " , testSwitchCase) ,
332
+ ( " testWhileCase " , testWhileCase) ,
320
333
]
321
334
}
322
335
@@ -398,9 +411,9 @@ extension ValidateDocumentationCommentsTests {
398
411
( " testInitializer " , testInitializer) ,
399
412
( " testParameterDocumentation " , testParameterDocumentation) ,
400
413
( " testParametersName " , testParametersName) ,
401
- ( " testThrowsDocumentation " , testThrowsDocumentation) ,
402
414
( " testReturnDocumentation " , testReturnDocumentation) ,
403
415
( " testSeparateLabelAndIdentifier " , testSeparateLabelAndIdentifier) ,
416
+ ( " testThrowsDocumentation " , testThrowsDocumentation) ,
404
417
( " testValidDocumentation " , testValidDocumentation) ,
405
418
]
406
419
}
0 commit comments