summaryrefslogtreecommitdiff
path: root/plugins/kotlin/fir/test/org/jetbrains/kotlin/idea/fir/completion/FirKeywordCompletionTestGenerated.java
blob: a59b3fa76cf823d277f8d2e45e65767ac62deae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.

package org.jetbrains.kotlin.idea.fir.completion;

import com.intellij.testFramework.TestDataPath;
import org.jetbrains.kotlin.idea.test.JUnit3RunnerWithInners;
import org.jetbrains.kotlin.idea.test.KotlinTestUtils;
import org.jetbrains.kotlin.test.TestMetadata;
import org.jetbrains.kotlin.idea.test.TestRoot;
import org.junit.runner.RunWith;

/**
 * This class is generated by {@link org.jetbrains.kotlin.testGenerator.generator.TestGenerator}.
 * DO NOT MODIFY MANUALLY.
 */
@SuppressWarnings("all")
@TestRoot("fir")
@TestDataPath("$CONTENT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public abstract class FirKeywordCompletionTestGenerated extends AbstractFirKeywordCompletionTest {
    @RunWith(JUnit3RunnerWithInners.class)
    @TestMetadata("../completion/tests/testData/keywords")
    public static class Keywords extends AbstractFirKeywordCompletionTest {
        private void runTest(String testDataFilePath) throws Exception {
            KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
        }

        @TestMetadata("AfterClassName.kt")
        public void testAfterClassName() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterClassName.kt");
        }

        @TestMetadata("AfterClassProperty.kt")
        public void testAfterClassProperty() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterClassProperty.kt");
        }

        @TestMetadata("AfterClasses.kt")
        public void testAfterClasses() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterClasses.kt");
        }

        @TestMetadata("AfterClasses_LangLevel10.kt")
        public void testAfterClasses_LangLevel10() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterClasses_LangLevel10.kt");
        }

        @TestMetadata("AfterClasses_LangLevel11.kt")
        public void testAfterClasses_LangLevel11() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterClasses_LangLevel11.kt");
        }

        @TestMetadata("AfterDot.kt")
        public void testAfterDot() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterDot.kt");
        }

        @TestMetadata("AfterFuns.kt")
        public void testAfterFuns() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterFuns.kt");
        }

        @TestMetadata("AfterIf.kt")
        public void testAfterIf() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterIf.kt");
        }

        @TestMetadata("AfterSafeDot.kt")
        public void testAfterSafeDot() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterSafeDot.kt");
        }

        @TestMetadata("AfterSpaceAndDot.kt")
        public void testAfterSpaceAndDot() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterSpaceAndDot.kt");
        }

        @TestMetadata("AfterTry.kt")
        public void testAfterTry() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterTry.kt");
        }

        @TestMetadata("AfterTryCatch.kt")
        public void testAfterTryCatch() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterTryCatch.kt");
        }

        @TestMetadata("AfterTryFinally.kt")
        public void testAfterTryFinally() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterTryFinally.kt");
        }

        @TestMetadata("AfterTryInAssignment.kt")
        public void testAfterTryInAssignment() throws Exception {
            runTest("../completion/tests/testData/keywords/AfterTryInAssignment.kt");
        }

        @TestMetadata("BeforeClass.kt")
        public void testBeforeClass() throws Exception {
            runTest("../completion/tests/testData/keywords/BeforeClass.kt");
        }

        @TestMetadata("BeforeDelegationCall.kt")
        public void testBeforeDelegationCall() throws Exception {
            runTest("../completion/tests/testData/keywords/BeforeDelegationCall.kt");
        }

        @TestMetadata("BreakContinue.kt")
        public void testBreakContinue() throws Exception {
            runTest("../completion/tests/testData/keywords/BreakContinue.kt");
        }

        @TestMetadata("BreakWithLabel.kt")
        public void testBreakWithLabel() throws Exception {
            runTest("../completion/tests/testData/keywords/BreakWithLabel.kt");
        }

        @TestMetadata("CommaExpected.kt")
        public void testCommaExpected() throws Exception {
            runTest("../completion/tests/testData/keywords/CommaExpected.kt");
        }

        @TestMetadata("CompanionObjectBeforeObject.kt")
        public void testCompanionObjectBeforeObject() throws Exception {
            runTest("../completion/tests/testData/keywords/CompanionObjectBeforeObject.kt");
        }

        @TestMetadata("ContinueWithLabel.kt")
        public void testContinueWithLabel() throws Exception {
            runTest("../completion/tests/testData/keywords/ContinueWithLabel.kt");
        }

        @TestMetadata("Else1.kt")
        public void testElse1() throws Exception {
            runTest("../completion/tests/testData/keywords/Else1.kt");
        }

        @TestMetadata("Else2.kt")
        public void testElse2() throws Exception {
            runTest("../completion/tests/testData/keywords/Else2.kt");
        }

        @TestMetadata("FileKeyword.kt")
        public void testFileKeyword() throws Exception {
            runTest("../completion/tests/testData/keywords/FileKeyword.kt");
        }

        @TestMetadata("FixingLayoutAndReturn.kt")
        public void testFixingLayoutAndReturn() throws Exception {
            runTest("../completion/tests/testData/keywords/FixingLayoutAndReturn.kt");
        }

        @TestMetadata("GlobalPropertyAccessors.kt")
        public void testGlobalPropertyAccessors() throws Exception {
            runTest("../completion/tests/testData/keywords/GlobalPropertyAccessors.kt");
        }

        @TestMetadata("IfTry.kt")
        public void testIfTry() throws Exception {
            runTest("../completion/tests/testData/keywords/IfTry.kt");
        }

        @TestMetadata("IfTryCatch.kt")
        public void testIfTryCatch() throws Exception {
            runTest("../completion/tests/testData/keywords/IfTryCatch.kt");
        }

        @TestMetadata("InAnnotationClassScope.kt")
        public void testInAnnotationClassScope() throws Exception {
            runTest("../completion/tests/testData/keywords/InAnnotationClassScope.kt");
        }

        @TestMetadata("InArgumentList.kt")
        public void testInArgumentList() throws Exception {
            runTest("../completion/tests/testData/keywords/InArgumentList.kt");
        }

        @TestMetadata("InBlockComment.kt")
        public void testInBlockComment() throws Exception {
            runTest("../completion/tests/testData/keywords/InBlockComment.kt");
        }

        @TestMetadata("InChar.kt")
        public void testInChar() throws Exception {
            runTest("../completion/tests/testData/keywords/InChar.kt");
        }

        @TestMetadata("InClassBeforeFun.kt")
        public void testInClassBeforeFun() throws Exception {
            runTest("../completion/tests/testData/keywords/InClassBeforeFun.kt");
        }

        @TestMetadata("InClassNoCompletionInValName.kt")
        public void testInClassNoCompletionInValName() throws Exception {
            runTest("../completion/tests/testData/keywords/InClassNoCompletionInValName.kt");
        }

        @TestMetadata("InClassProperty.kt")
        public void testInClassProperty() throws Exception {
            runTest("../completion/tests/testData/keywords/InClassProperty.kt");
        }

        @TestMetadata("InClassScope.kt")
        public void testInClassScope() throws Exception {
            runTest("../completion/tests/testData/keywords/InClassScope.kt");
        }

        @TestMetadata("InClassTypeParameters.kt")
        public void testInClassTypeParameters() throws Exception {
            runTest("../completion/tests/testData/keywords/InClassTypeParameters.kt");
        }

        @TestMetadata("InCodeBlock.kt")
        public void testInCodeBlock() throws Exception {
            runTest("../completion/tests/testData/keywords/InCodeBlock.kt");
        }

        @TestMetadata("InElse.kt")
        public void testInElse() throws Exception {
            runTest("../completion/tests/testData/keywords/InElse.kt");
        }

        @TestMetadata("InEnumScope1.kt")
        public void testInEnumScope1() throws Exception {
            runTest("../completion/tests/testData/keywords/InEnumScope1.kt");
        }

        @TestMetadata("InEnumScope2.kt")
        public void testInEnumScope2() throws Exception {
            runTest("../completion/tests/testData/keywords/InEnumScope2.kt");
        }

        @TestMetadata("InFunctionExpressionBody.kt")
        public void testInFunctionExpressionBody() throws Exception {
            runTest("../completion/tests/testData/keywords/InFunctionExpressionBody.kt");
        }

        @TestMetadata("InFunctionName.kt")
        public void testInFunctionName() throws Exception {
            runTest("../completion/tests/testData/keywords/InFunctionName.kt");
        }

        @TestMetadata("InFunctionRecieverType.kt")
        public void testInFunctionRecieverType() throws Exception {
            runTest("../completion/tests/testData/keywords/InFunctionRecieverType.kt");
        }

        @TestMetadata("InFunctionTypePosition.kt")
        public void testInFunctionTypePosition() throws Exception {
            runTest("../completion/tests/testData/keywords/InFunctionTypePosition.kt");
        }

        @TestMetadata("InGetterExpressionBody.kt")
        public void testInGetterExpressionBody() throws Exception {
            runTest("../completion/tests/testData/keywords/InGetterExpressionBody.kt");
        }

        @TestMetadata("InIf.kt")
        public void testInIf() throws Exception {
            runTest("../completion/tests/testData/keywords/InIf.kt");
        }

        @TestMetadata("InInterfaceScope.kt")
        public void testInInterfaceScope() throws Exception {
            runTest("../completion/tests/testData/keywords/InInterfaceScope.kt");
        }

        @TestMetadata("InMemberFunParametersList.kt")
        public void testInMemberFunParametersList() throws Exception {
            runTest("../completion/tests/testData/keywords/InMemberFunParametersList.kt");
        }

        @TestMetadata("InModifierListInsideClass.kt")
        public void testInModifierListInsideClass() throws Exception {
            runTest("../completion/tests/testData/keywords/InModifierListInsideClass.kt");
        }

        @TestMetadata("InNotFinishedGenericWithFunAfter.kt")
        public void testInNotFinishedGenericWithFunAfter() throws Exception {
            runTest("../completion/tests/testData/keywords/InNotFinishedGenericWithFunAfter.kt");
        }

        @TestMetadata("InObjectScope.kt")
        public void testInObjectScope() throws Exception {
            runTest("../completion/tests/testData/keywords/InObjectScope.kt");
        }

        @TestMetadata("InParameterDefaultValue.kt")
        public void testInParameterDefaultValue() throws Exception {
            runTest("../completion/tests/testData/keywords/InParameterDefaultValue.kt");
        }

        @TestMetadata("InPrimaryConstructorParametersList.kt")
        public void testInPrimaryConstructorParametersList() throws Exception {
            runTest("../completion/tests/testData/keywords/InPrimaryConstructorParametersList.kt");
        }

        @TestMetadata("InPropertyInitializer.kt")
        public void testInPropertyInitializer() throws Exception {
            runTest("../completion/tests/testData/keywords/InPropertyInitializer.kt");
        }

        @TestMetadata("InPropertyTypeReference.kt")
        public void testInPropertyTypeReference() throws Exception {
            runTest("../completion/tests/testData/keywords/InPropertyTypeReference.kt");
        }

        @TestMetadata("InString.kt")
        public void testInString() throws Exception {
            runTest("../completion/tests/testData/keywords/InString.kt");
        }

        @TestMetadata("InTopFunParametersList.kt")
        public void testInTopFunParametersList() throws Exception {
            runTest("../completion/tests/testData/keywords/InTopFunParametersList.kt");
        }

        @TestMetadata("InTopScopeAfterPackage.kt")
        public void testInTopScopeAfterPackage() throws Exception {
            runTest("../completion/tests/testData/keywords/InTopScopeAfterPackage.kt");
        }

        @TestMetadata("InTypePosition.kt")
        public void testInTypePosition() throws Exception {
            runTest("../completion/tests/testData/keywords/InTypePosition.kt");
        }

        @TestMetadata("LabeledLambdaThis.kt")
        public void testLabeledLambdaThis() throws Exception {
            runTest("../completion/tests/testData/keywords/LabeledLambdaThis.kt");
        }

        @TestMetadata("LineComment.kt")
        public void testLineComment() throws Exception {
            runTest("../completion/tests/testData/keywords/LineComment.kt");
        }

        @TestMetadata("NoBreak1.kt")
        public void testNoBreak1() throws Exception {
            runTest("../completion/tests/testData/keywords/NoBreak1.kt");
        }

        @TestMetadata("NoBreak2.kt")
        public void testNoBreak2() throws Exception {
            runTest("../completion/tests/testData/keywords/NoBreak2.kt");
        }

        @TestMetadata("NoCompanionThis.kt")
        public void testNoCompanionThis() throws Exception {
            runTest("../completion/tests/testData/keywords/NoCompanionThis.kt");
        }

        @TestMetadata("NoCompletionForCapitalPrefix.kt")
        public void testNoCompletionForCapitalPrefix() throws Exception {
            runTest("../completion/tests/testData/keywords/NoCompletionForCapitalPrefix.kt");
        }

        @TestMetadata("NoConstructorInCompanion.kt")
        public void testNoConstructorInCompanion() throws Exception {
            runTest("../completion/tests/testData/keywords/NoConstructorInCompanion.kt");
        }

        @TestMetadata("NoConstructorInObject.kt")
        public void testNoConstructorInObject() throws Exception {
            runTest("../completion/tests/testData/keywords/NoConstructorInObject.kt");
        }

        @TestMetadata("NoConstructorInObjectLiteral.kt")
        public void testNoConstructorInObjectLiteral() throws Exception {
            runTest("../completion/tests/testData/keywords/NoConstructorInObjectLiteral.kt");
        }

        @TestMetadata("NoContinue.kt")
        public void testNoContinue() throws Exception {
            runTest("../completion/tests/testData/keywords/NoContinue.kt");
        }

        @TestMetadata("NoFinalInParameterList.kt")
        public void testNoFinalInParameterList() throws Exception {
            runTest("../completion/tests/testData/keywords/NoFinalInParameterList.kt");
        }

        @TestMetadata("NoValVarInFunctionParameters.kt")
        public void testNoValVarInFunctionParameters() throws Exception {
            runTest("../completion/tests/testData/keywords/NoValVarInFunctionParameters.kt");
        }

        @TestMetadata("NoValVarInSecondaryConstructorParameters.kt")
        public void testNoValVarInSecondaryConstructorParameters() throws Exception {
            runTest("../completion/tests/testData/keywords/NoValVarInSecondaryConstructorParameters.kt");
        }

        @TestMetadata("NotInNotIs.kt")
        public void testNotInNotIs() throws Exception {
            runTest("../completion/tests/testData/keywords/NotInNotIs.kt");
        }

        @TestMetadata("NotInNotIs2.kt")
        public void testNotInNotIs2() throws Exception {
            runTest("../completion/tests/testData/keywords/NotInNotIs2.kt");
        }

        @TestMetadata("PrefixMatcher.kt")
        public void testPrefixMatcher() throws Exception {
            runTest("../completion/tests/testData/keywords/PrefixMatcher.kt");
        }

        @TestMetadata("PropertyAccessors.kt")
        public void testPropertyAccessors() throws Exception {
            runTest("../completion/tests/testData/keywords/PropertyAccessors.kt");
        }

        @TestMetadata("PropertyAccessors2.kt")
        public void testPropertyAccessors2() throws Exception {
            runTest("../completion/tests/testData/keywords/PropertyAccessors2.kt");
        }

        @TestMetadata("PropertyAccessors_ExplicitBackingFieldsEnabled.kt")
        public void testPropertyAccessors_ExplicitBackingFieldsEnabled() throws Exception {
            runTest("../completion/tests/testData/keywords/PropertyAccessors_ExplicitBackingFieldsEnabled.kt");
        }

        @TestMetadata("PropertySetter.kt")
        public void testPropertySetter() throws Exception {
            runTest("../completion/tests/testData/keywords/PropertySetter.kt");
        }

        @TestMetadata("QualifiedThis.kt")
        public void testQualifiedThis() throws Exception {
            runTest("../completion/tests/testData/keywords/QualifiedThis.kt");
        }

        @TestMetadata("QualifiedThisInAccessor.kt")
        public void testQualifiedThisInAccessor() throws Exception {
            runTest("../completion/tests/testData/keywords/QualifiedThisInAccessor.kt");
        }

        @TestMetadata("Receiver.kt")
        public void testReceiver() throws Exception {
            runTest("../completion/tests/testData/keywords/Receiver.kt");
        }

        @TestMetadata("Return1.kt")
        public void testReturn1() throws Exception {
            runTest("../completion/tests/testData/keywords/Return1.kt");
        }

        @TestMetadata("Return2.kt")
        public void testReturn2() throws Exception {
            runTest("../completion/tests/testData/keywords/Return2.kt");
        }

        @TestMetadata("Return3.kt")
        public void testReturn3() throws Exception {
            runTest("../completion/tests/testData/keywords/Return3.kt");
        }

        @TestMetadata("Return4.kt")
        public void testReturn4() throws Exception {
            runTest("../completion/tests/testData/keywords/Return4.kt");
        }

        @TestMetadata("Return5.kt")
        public void testReturn5() throws Exception {
            runTest("../completion/tests/testData/keywords/Return5.kt");
        }

        @TestMetadata("Return6.kt")
        public void testReturn6() throws Exception {
            runTest("../completion/tests/testData/keywords/Return6.kt");
        }

        @TestMetadata("Return7.kt")
        public void testReturn7() throws Exception {
            runTest("../completion/tests/testData/keywords/Return7.kt");
        }

        @TestMetadata("Return8.kt")
        public void testReturn8() throws Exception {
            runTest("../completion/tests/testData/keywords/Return8.kt");
        }

        @TestMetadata("Return9.kt")
        public void testReturn9() throws Exception {
            runTest("../completion/tests/testData/keywords/Return9.kt");
        }

        @TestMetadata("ReturnBoolean.kt")
        public void testReturnBoolean() throws Exception {
            runTest("../completion/tests/testData/keywords/ReturnBoolean.kt");
        }

        @TestMetadata("ReturnCollection.kt")
        public void testReturnCollection() throws Exception {
            runTest("../completion/tests/testData/keywords/ReturnCollection.kt");
        }

        @TestMetadata("ReturnIterable.kt")
        public void testReturnIterable() throws Exception {
            runTest("../completion/tests/testData/keywords/ReturnIterable.kt");
        }

        @TestMetadata("ReturnKeywordName.kt")
        public void testReturnKeywordName() throws Exception {
            runTest("../completion/tests/testData/keywords/ReturnKeywordName.kt");
        }

        @TestMetadata("ReturnList.kt")
        public void testReturnList() throws Exception {
            runTest("../completion/tests/testData/keywords/ReturnList.kt");
        }

        @TestMetadata("ReturnNotNull.kt")
        public void testReturnNotNull() throws Exception {
            runTest("../completion/tests/testData/keywords/ReturnNotNull.kt");
        }

        @TestMetadata("ReturnNull.kt")
        public void testReturnNull() throws Exception {
            runTest("../completion/tests/testData/keywords/ReturnNull.kt");
        }

        @TestMetadata("ReturnNullableBoolean.kt")
        public void testReturnNullableBoolean() throws Exception {
            runTest("../completion/tests/testData/keywords/ReturnNullableBoolean.kt");
        }

        @TestMetadata("ReturnSet.kt")
        public void testReturnSet() throws Exception {
            runTest("../completion/tests/testData/keywords/ReturnSet.kt");
        }

        @TestMetadata("SealedForAlreadySealed.kt")
        public void testSealedForAlreadySealed() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedForAlreadySealed.kt");
        }

        @TestMetadata("SealedForAnnotationClass.kt")
        public void testSealedForAnnotationClass() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedForAnnotationClass.kt");
        }

        @TestMetadata("SealedForDataClass.kt")
        public void testSealedForDataClass() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedForDataClass.kt");
        }

        @TestMetadata("SealedForDeclaredClass.kt")
        public void testSealedForDeclaredClass() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedForDeclaredClass.kt");
        }

        @TestMetadata("SealedForDeclaredInterface.kt")
        public void testSealedForDeclaredInterface() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedForDeclaredInterface.kt");
        }

        @TestMetadata("SealedForEnumClass.kt")
        public void testSealedForEnumClass() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedForEnumClass.kt");
        }

        @TestMetadata("SealedForFunInterface.kt")
        public void testSealedForFunInterface() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedForFunInterface.kt");
        }

        @TestMetadata("SealedForInnerClass.kt")
        public void testSealedForInnerClass() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedForInnerClass.kt");
        }

        @TestMetadata("SealedForOpenClass.kt")
        public void testSealedForOpenClass() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedForOpenClass.kt");
        }

        @TestMetadata("SealedWithName.kt")
        public void testSealedWithName() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedWithName.kt");
        }

        @TestMetadata("SealedWithoutName.kt")
        public void testSealedWithoutName() throws Exception {
            runTest("../completion/tests/testData/keywords/SealedWithoutName.kt");
        }

        @TestMetadata("SuspendInParameterTypePosition.kt")
        public void testSuspendInParameterTypePosition() throws Exception {
            runTest("../completion/tests/testData/keywords/SuspendInParameterTypePosition.kt");
        }

        @TestMetadata("SuspendInsideTypeArguments.kt")
        public void testSuspendInsideTypeArguments() throws Exception {
            runTest("../completion/tests/testData/keywords/SuspendInsideTypeArguments.kt");
        }

        @TestMetadata("SuspendInsideTypeArguments1.kt")
        public void testSuspendInsideTypeArguments1() throws Exception {
            runTest("../completion/tests/testData/keywords/SuspendInsideTypeArguments1.kt");
        }

        @TestMetadata("This.kt")
        public void testThis() throws Exception {
            runTest("../completion/tests/testData/keywords/This.kt");
        }

        @TestMetadata("ThisInCompanion.kt")
        public void testThisInCompanion() throws Exception {
            runTest("../completion/tests/testData/keywords/ThisInCompanion.kt");
        }

        @TestMetadata("ThisPrefixMatching.kt")
        public void testThisPrefixMatching() throws Exception {
            runTest("../completion/tests/testData/keywords/ThisPrefixMatching.kt");
        }

        @TestMetadata("TopScope.kt")
        public void testTopScope() throws Exception {
            runTest("../completion/tests/testData/keywords/TopScope.kt");
        }

        @TestMetadata("topScope2.kt")
        public void testTopScope2() throws Exception {
            runTest("../completion/tests/testData/keywords/topScope2.kt");
        }

        @TestMetadata("TopScope3-.kt")
        public void testTopScope3_() throws Exception {
            runTest("../completion/tests/testData/keywords/TopScope3-.kt");
        }

        @TestMetadata("UseSiteTargetForPrimaryConstructorParameter.kt")
        public void testUseSiteTargetForPrimaryConstructorParameter() throws Exception {
            runTest("../completion/tests/testData/keywords/UseSiteTargetForPrimaryConstructorParameter.kt");
        }
    }

    @RunWith(JUnit3RunnerWithInners.class)
    @TestMetadata("../completion/idea-fir/testData/completion/keywords")
    public abstract static class KeywordsFir extends AbstractFirKeywordCompletionTest {

    }
}