ComposeLikeIrBytecodeTextTestGenerated.java 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Copyright 2010-2020 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.codegen.ir;

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")
20
@TestMetadata("compiler/testData/codegen/composeLikeBytecodeText")
21 22 23 24 25 26 27
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public class ComposeLikeIrBytecodeTextTestGenerated extends AbstractComposeLikeIrBytecodeTextTest {
    private void runTest(String testDataFilePath) throws Exception {
        KotlinTestUtils.runTest(this::doTest, TargetBackend.JVM_IR, testDataFilePath);
    }

28 29
    public void testAllFilesPresentInComposeLikeBytecodeText() throws Exception {
        KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/composeLikeBytecodeText"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JVM_IR, true);
30 31 32 33
    }

    @TestMetadata("default.kt")
    public void testDefault() throws Exception {
34
        runTest("compiler/testData/codegen/composeLikeBytecodeText/default.kt");
35 36 37 38
    }

    @TestMetadata("defaultInline.kt")
    public void testDefaultInline() throws Exception {
39
        runTest("compiler/testData/codegen/composeLikeBytecodeText/defaultInline.kt");
40 41 42 43
    }

    @TestMetadata("defaultLocal.kt")
    public void testDefaultLocal() throws Exception {
44
        runTest("compiler/testData/codegen/composeLikeBytecodeText/defaultLocal.kt");
45 46
    }
}