65244b4bea
Change the copyright from "JetBrains s.r.o." to "JetBrains s.r.o. and Kotlin Project contributors" Update only 2 lines copyright.
82 lines
3.3 KiB
Java
Generated
82 lines
3.3 KiB
Java
Generated
/*
|
|
* Copyright 2010-2019 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;
|
|
|
|
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");
|
|
}
|
|
}
|