/* * Copyright 2010-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jetbrains.kotlin.idea.debugger; import com.intellij.testFramework.TestDataPath; import org.jetbrains.kotlin.test.JUnit3RunnerWithInners; import org.jetbrains.kotlin.test.KotlinTestUtils; import org.jetbrains.kotlin.test.TargetBackend; 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.generators.tests.TestsPackage}. DO NOT MODIFY MANUALLY */ @SuppressWarnings("all") @RunWith(JUnit3RunnerWithInners.class) public class PositionManagerTestGenerated extends AbstractPositionManagerTest { @TestMetadata("idea/testData/debugger/positionManager") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class SingleFile extends AbstractPositionManagerTest { public void testAllFilesPresentInSingleFile() throws Exception { KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/debugger/positionManager"), Pattern.compile("^(.+)\\.kt$"), TargetBackend.ANY, false); } @TestMetadata("anonymousFunction.kt") public void testAnonymousFunction() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/anonymousFunction.kt"); doTest(fileName); } @TestMetadata("anonymousNamedFunction.kt") public void testAnonymousNamedFunction() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/anonymousNamedFunction.kt"); doTest(fileName); } @TestMetadata("class.kt") public void testClass() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/class.kt"); doTest(fileName); } @TestMetadata("classObject.kt") public void testClassObject() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/classObject.kt"); doTest(fileName); } @TestMetadata("enum.kt") public void testEnum() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/enum.kt"); doTest(fileName); } @TestMetadata("extensionFunction.kt") public void testExtensionFunction() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/extensionFunction.kt"); doTest(fileName); } @TestMetadata("functionLiteral.kt") public void testFunctionLiteral() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/functionLiteral.kt"); doTest(fileName); } @TestMetadata("functionLiteralInVal.kt") public void testFunctionLiteralInVal() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/functionLiteralInVal.kt"); doTest(fileName); } @TestMetadata("innerClass.kt") public void testInnerClass() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/innerClass.kt"); doTest(fileName); } @TestMetadata("JvmNameAnnotation.kt") public void testJvmNameAnnotation() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/JvmNameAnnotation.kt"); doTest(fileName); } @TestMetadata("localFunction.kt") public void testLocalFunction() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/localFunction.kt"); doTest(fileName); } @TestMetadata("objectDeclaration.kt") public void testObjectDeclaration() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/objectDeclaration.kt"); doTest(fileName); } @TestMetadata("objectExpression.kt") public void testObjectExpression() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/objectExpression.kt"); doTest(fileName); } @TestMetadata("package.kt") public void testPackage() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/package.kt"); doTest(fileName); } @TestMetadata("propertyAccessor.kt") public void testPropertyAccessor() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/propertyAccessor.kt"); doTest(fileName); } @TestMetadata("propertyInitializer.kt") public void testPropertyInitializer() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/propertyInitializer.kt"); doTest(fileName); } @TestMetadata("topLevelPropertyInitializer.kt") public void testTopLevelPropertyInitializer() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/topLevelPropertyInitializer.kt"); doTest(fileName); } @TestMetadata("trait.kt") public void testTrait() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/trait.kt"); doTest(fileName); } @TestMetadata("twoClasses.kt") public void testTwoClasses() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/twoClasses.kt"); doTest(fileName); } @TestMetadata("_DefaultPackage.kt") public void test_DefaultPackage() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/_DefaultPackage.kt"); doTest(fileName); } } @TestMetadata("idea/testData/debugger/positionManager") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class MultiFile extends AbstractPositionManagerTest { public void testAllFilesPresentInMultiFile() throws Exception { KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/debugger/positionManager"), Pattern.compile("^([^\\.]+)$"), TargetBackend.ANY, false); } @TestMetadata("multiFilePackage") public void testMultiFilePackage() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/multiFilePackage/"); doTest(fileName); } @TestMetadata("multiFileSameName") public void testMultiFileSameName() throws Exception { String fileName = KotlinTestUtils.navigationMetadata("idea/testData/debugger/positionManager/multiFileSameName/"); doTest(fileName); } } }