blob: d96b37609b96e3ea4e993f207f17bbe727676d02 [file] [log] [blame]
/*
* Copyright 2010-2018 JetBrains s.r.o. 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;
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")
@TestMetadata("idea/testData/dataFlowValueRendering")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public class DataFlowValueRenderingTestGenerated extends AbstractDataFlowValueRenderingTest {
private void runTest(String testDataFilePath) throws Exception {
KotlinTestUtils.runTest(this::doTest, TargetBackend.ANY, testDataFilePath);
}
public void testAllFilesPresentInDataFlowValueRendering() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/dataFlowValueRendering"), Pattern.compile("^(.+)\\.kt$"), TargetBackend.ANY, true);
}
@TestMetadata("classProperty.kt")
public void testClassProperty() throws Exception {
runTest("idea/testData/dataFlowValueRendering/classProperty.kt");
}
@TestMetadata("complexIdentifier.kt")
public void testComplexIdentifier() throws Exception {
runTest("idea/testData/dataFlowValueRendering/complexIdentifier.kt");
}
@TestMetadata("complexIdentifierWithImplicitReceiver.kt")
public void testComplexIdentifierWithImplicitReceiver() throws Exception {
runTest("idea/testData/dataFlowValueRendering/complexIdentifierWithImplicitReceiver.kt");
}
@TestMetadata("complexIdentifierWithInitiallyNullableReceiver.kt")
public void testComplexIdentifierWithInitiallyNullableReceiver() throws Exception {
runTest("idea/testData/dataFlowValueRendering/complexIdentifierWithInitiallyNullableReceiver.kt");
}
@TestMetadata("complexIdentifierWithReceiver.kt")
public void testComplexIdentifierWithReceiver() throws Exception {
runTest("idea/testData/dataFlowValueRendering/complexIdentifierWithReceiver.kt");
}
@TestMetadata("multipleVariables.kt")
public void testMultipleVariables() throws Exception {
runTest("idea/testData/dataFlowValueRendering/multipleVariables.kt");
}
@TestMetadata("packageProperty.kt")
public void testPackageProperty() throws Exception {
runTest("idea/testData/dataFlowValueRendering/packageProperty.kt");
}
@TestMetadata("receivers.kt")
public void testReceivers() throws Exception {
runTest("idea/testData/dataFlowValueRendering/receivers.kt");
}
@TestMetadata("smartCast.kt")
public void testSmartCast() throws Exception {
runTest("idea/testData/dataFlowValueRendering/smartCast.kt");
}
@TestMetadata("smartNotNull.kt")
public void testSmartNotNull() throws Exception {
runTest("idea/testData/dataFlowValueRendering/smartNotNull.kt");
}
}