/* * Copyright 2010-2024 JetBrains s.r.o. and Kotlin Programming Language contributors. * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ package org.jetbrains.kotlin.repl; import com.intellij.testFramework.TestDataPath; import org.jetbrains.kotlin.test.JUnit3RunnerWithInners; import org.jetbrains.kotlin.test.KotlinTestUtils; import org.jetbrains.kotlin.test.util.KtTestUtil; import org.jetbrains.kotlin.test.TestMetadata; import org.junit.runner.RunWith; import java.io.File; import java.util.regex.Pattern; /** This class is generated by {@link org.jetbrains.kotlin.test.generators.GenerateCompilerTestsKt}. DO NOT MODIFY MANUALLY */ @SuppressWarnings("all") @TestMetadata("compiler/testData/repl") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public class ReplInterpreterTestGenerated extends AbstractReplInterpreterTest { private void runTest(String testDataFilePath) { KotlinTestUtils.runTest(this::doTest, this, testDataFilePath); } public void testAllFilesPresentInRepl() { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/repl"), Pattern.compile("^(.+)\\.repl$"), null, true); } @TestMetadata("analyzeErrors.repl") public void testAnalyzeErrors() { runTest("compiler/testData/repl/analyzeErrors.repl"); } @TestMetadata("constants.repl") public void testConstants() { runTest("compiler/testData/repl/constants.repl"); } @TestMetadata("destructuringDeclaration.repl") public void testDestructuringDeclaration() { runTest("compiler/testData/repl/destructuringDeclaration.repl"); } @TestMetadata("empty.repl") public void testEmpty() { runTest("compiler/testData/repl/empty.repl"); } @TestMetadata("evaluationErrors.repl") public void testEvaluationErrors() { runTest("compiler/testData/repl/evaluationErrors.repl"); } @TestMetadata("exceptionInValueToString.repl") public void testExceptionInValueToString() { runTest("compiler/testData/repl/exceptionInValueToString.repl"); } @TestMetadata("exceptionInVariableInitializer.repl") public void testExceptionInVariableInitializer() { runTest("compiler/testData/repl/exceptionInVariableInitializer.repl"); } @TestMetadata("function.repl") public void testFunction() { runTest("compiler/testData/repl/function.repl"); } @TestMetadata("functionOverloadResolution.repl") public void testFunctionOverloadResolution() { runTest("compiler/testData/repl/functionOverloadResolution.repl"); } @TestMetadata("functionOverloadResolutionAnyBeatsString.repl") public void testFunctionOverloadResolutionAnyBeatsString() { runTest("compiler/testData/repl/functionOverloadResolutionAnyBeatsString.repl"); } @TestMetadata("functionReferencesPrev.repl") public void testFunctionReferencesPrev() { runTest("compiler/testData/repl/functionReferencesPrev.repl"); } @TestMetadata("functionResult.repl") public void testFunctionResult() { runTest("compiler/testData/repl/functionResult.repl"); } @TestMetadata("imports.repl") public void testImports() { runTest("compiler/testData/repl/imports.repl"); } @TestMetadata("multipleImports.repl") public void testMultipleImports() { runTest("compiler/testData/repl/multipleImports.repl"); } @TestMetadata("noWarningsWithErrors.repl") public void testNoWarningsWithErrors() { runTest("compiler/testData/repl/noWarningsWithErrors.repl"); } @TestMetadata("simple.repl") public void testSimple() { runTest("compiler/testData/repl/simple.repl"); } @TestMetadata("simpleTwoVals.repl") public void testSimpleTwoVals() { runTest("compiler/testData/repl/simpleTwoVals.repl"); } @TestMetadata("syntaxErrors.repl") public void testSyntaxErrors() { runTest("compiler/testData/repl/syntaxErrors.repl"); } @TestMetadata("topLevelLocalDelegatedProperty.repl") public void testTopLevelLocalDelegatedProperty() { runTest("compiler/testData/repl/topLevelLocalDelegatedProperty.repl"); } @TestMetadata("twoClosures.repl") public void testTwoClosures() { runTest("compiler/testData/repl/twoClosures.repl"); } @TestMetadata("compiler/testData/repl/classes") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class Classes extends AbstractReplInterpreterTest { private void runTest(String testDataFilePath) { KotlinTestUtils.runTest(this::doTest, this, testDataFilePath); } public void testAllFilesPresentInClasses() { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/repl/classes"), Pattern.compile("^(.+)\\.repl$"), null, true); } @TestMetadata("classInheritance.repl") public void testClassInheritance() { runTest("compiler/testData/repl/classes/classInheritance.repl"); } @TestMetadata("classRedeclaration.repl") public void testClassRedeclaration() { runTest("compiler/testData/repl/classes/classRedeclaration.repl"); } @TestMetadata("classReferencesVal.repl") public void testClassReferencesVal() { runTest("compiler/testData/repl/classes/classReferencesVal.repl"); } @TestMetadata("emptyClass.repl") public void testEmptyClass() { runTest("compiler/testData/repl/classes/emptyClass.repl"); } @TestMetadata("emptyClassRedeclaration.repl") public void testEmptyClassRedeclaration() { runTest("compiler/testData/repl/classes/emptyClassRedeclaration.repl"); } @TestMetadata("enumEntrySubclass.repl") public void testEnumEntrySubclass() { runTest("compiler/testData/repl/classes/enumEntrySubclass.repl"); } @TestMetadata("import.repl") public void testImport() { runTest("compiler/testData/repl/classes/import.repl"); } @TestMetadata("simpleClass.repl") public void testSimpleClass() { runTest("compiler/testData/repl/classes/simpleClass.repl"); } @TestMetadata("simpleEnum.repl") public void testSimpleEnum() { runTest("compiler/testData/repl/classes/simpleEnum.repl"); } @TestMetadata("simpleTrait.repl") public void testSimpleTrait() { runTest("compiler/testData/repl/classes/simpleTrait.repl"); } } @TestMetadata("compiler/testData/repl/controlFlow") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class ControlFlow extends AbstractReplInterpreterTest { private void runTest(String testDataFilePath) { KotlinTestUtils.runTest(this::doTest, this, testDataFilePath); } public void testAllFilesPresentInControlFlow() { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/repl/controlFlow"), Pattern.compile("^(.+)\\.repl$"), null, true); } @TestMetadata("functionWithoutReturn.repl") public void testFunctionWithoutReturn() { runTest("compiler/testData/repl/controlFlow/functionWithoutReturn.repl"); } @TestMetadata("incompleteIf.repl") public void testIncompleteIf() { runTest("compiler/testData/repl/controlFlow/incompleteIf.repl"); } @TestMetadata("incompleteWhen.repl") public void testIncompleteWhen() { runTest("compiler/testData/repl/controlFlow/incompleteWhen.repl"); } @TestMetadata("kt15407.repl") public void testKt15407() { runTest("compiler/testData/repl/controlFlow/kt15407.repl"); } @TestMetadata("loopWithWrongLabel.repl") public void testLoopWithWrongLabel() { runTest("compiler/testData/repl/controlFlow/loopWithWrongLabel.repl"); } @TestMetadata("mutateVal.repl") public void testMutateVal() { runTest("compiler/testData/repl/controlFlow/mutateVal.repl"); } @TestMetadata("useUninitializedVal.repl") public void testUseUninitializedVal() { runTest("compiler/testData/repl/controlFlow/useUninitializedVal.repl"); } } @TestMetadata("compiler/testData/repl/modules") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class Modules extends AbstractReplInterpreterTest { private void runTest(String testDataFilePath) { KotlinTestUtils.runTest(this::doTest, this, testDataFilePath); } public void testAllFilesPresentInModules() { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/repl/modules"), Pattern.compile("^(.+)\\.repl$"), null, true); } @TestMetadata("kt10001.repl") public void testKt10001() { runTest("compiler/testData/repl/modules/kt10001.repl"); } } @TestMetadata("compiler/testData/repl/multiline") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class Multiline extends AbstractReplInterpreterTest { private void runTest(String testDataFilePath) { KotlinTestUtils.runTest(this::doTest, this, testDataFilePath); } public void testAllFilesPresentInMultiline() { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/repl/multiline"), Pattern.compile("^(.+)\\.repl$"), null, true); } @TestMetadata("blankLinesAndComments.repl") public void testBlankLinesAndComments() { runTest("compiler/testData/repl/multiline/blankLinesAndComments.repl"); } @TestMetadata("functionOnSeveralLines.repl") public void testFunctionOnSeveralLines() { runTest("compiler/testData/repl/multiline/functionOnSeveralLines.repl"); } @TestMetadata("multilineFunctionInvocation.repl") public void testMultilineFunctionInvocation() { runTest("compiler/testData/repl/multiline/multilineFunctionInvocation.repl"); } @TestMetadata("openParenthesisIncomplete.repl") public void testOpenParenthesisIncomplete() { runTest("compiler/testData/repl/multiline/openParenthesisIncomplete.repl"); } @TestMetadata("simpleFunctionBodyOnNextLine.repl") public void testSimpleFunctionBodyOnNextLine() { runTest("compiler/testData/repl/multiline/simpleFunctionBodyOnNextLine.repl"); } } @TestMetadata("compiler/testData/repl/objects") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class Objects extends AbstractReplInterpreterTest { private void runTest(String testDataFilePath) { KotlinTestUtils.runTest(this::doTest, this, testDataFilePath); } public void testAllFilesPresentInObjects() { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/repl/objects"), Pattern.compile("^(.+)\\.repl$"), null, true); } @TestMetadata("emptyObject.repl") public void testEmptyObject() { runTest("compiler/testData/repl/objects/emptyObject.repl"); } @TestMetadata("localObject.repl") public void testLocalObject() { runTest("compiler/testData/repl/objects/localObject.repl"); } @TestMetadata("simpleObjectDeclaration.repl") public void testSimpleObjectDeclaration() { runTest("compiler/testData/repl/objects/simpleObjectDeclaration.repl"); } } @TestMetadata("compiler/testData/repl/primitiveTypes") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class PrimitiveTypes extends AbstractReplInterpreterTest { private void runTest(String testDataFilePath) { KotlinTestUtils.runTest(this::doTest, this, testDataFilePath); } public void testAllFilesPresentInPrimitiveTypes() { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/repl/primitiveTypes"), Pattern.compile("^(.+)\\.repl$"), null, true); } @TestMetadata("arrayOfBoxed.repl") public void testArrayOfBoxed() { runTest("compiler/testData/repl/primitiveTypes/arrayOfBoxed.repl"); } @TestMetadata("boxingOnPurpose.repl") public void testBoxingOnPurpose() { runTest("compiler/testData/repl/primitiveTypes/boxingOnPurpose.repl"); } } @TestMetadata("compiler/testData/repl/regressions") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class Regressions extends AbstractReplInterpreterTest { private void runTest(String testDataFilePath) { KotlinTestUtils.runTest(this::doTest, this, testDataFilePath); } public void testAllFilesPresentInRegressions() { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/repl/regressions"), Pattern.compile("^(.+)\\.repl$"), null, true); } @TestMetadata("kt6843.repl") public void testKt6843() { runTest("compiler/testData/repl/regressions/kt6843.repl"); } } @TestMetadata("compiler/testData/repl/useJava") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class UseJava extends AbstractReplInterpreterTest { private void runTest(String testDataFilePath) { KotlinTestUtils.runTest(this::doTest, this, testDataFilePath); } public void testAllFilesPresentInUseJava() { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/repl/useJava"), Pattern.compile("^(.+)\\.repl$"), null, true); } @TestMetadata("syntheticProperty.repl") public void testSyntheticProperty() { runTest("compiler/testData/repl/useJava/syntheticProperty.repl"); } } }