[Test] Regenerate tests after two previous commits
This commit is contained in:
committed by
Space Team
parent
d9beae0556
commit
acf2296590
+85
-85
@@ -21,102 +21,102 @@ import java.util.regex.Pattern;
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
@RunWith(JUnit3RunnerWithInners.class)
|
||||
public class Jvm8RuntimeDescriptorLoaderTestGenerated extends AbstractJvm8RuntimeDescriptorLoaderTest {
|
||||
private void runTest(String testDataFilePath) throws Exception {
|
||||
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
|
||||
private void runTest(String testDataFilePath) {
|
||||
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
|
||||
}
|
||||
|
||||
public void testAllFilesPresentInCompiledJava() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/loadJava8/compiledJava"), Pattern.compile("^(.+)\\.java$"), null, true);
|
||||
}
|
||||
|
||||
@TestMetadata("InnerClassTypeAnnotation.java")
|
||||
public void testInnerClassTypeAnnotation() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/InnerClassTypeAnnotation.java");
|
||||
}
|
||||
|
||||
@TestMetadata("MapRemove.java")
|
||||
public void testMapRemove() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/MapRemove.java");
|
||||
}
|
||||
|
||||
@TestMetadata("ParameterNames.java")
|
||||
public void testParameterNames() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/ParameterNames.java");
|
||||
}
|
||||
|
||||
@TestMetadata("compiler/testData/loadJava8/compiledJava/typeParameterAnnotations")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
@RunWith(JUnit3RunnerWithInners.class)
|
||||
public static class TypeParameterAnnotations extends AbstractJvm8RuntimeDescriptorLoaderTest {
|
||||
private void runTest(String testDataFilePath) {
|
||||
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
|
||||
}
|
||||
|
||||
public void testAllFilesPresentInCompiledJava() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/loadJava8/compiledJava"), Pattern.compile("^(.+)\\.java$"), null, true);
|
||||
public void testAllFilesPresentInTypeParameterAnnotations() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/loadJava8/compiledJava/typeParameterAnnotations"), Pattern.compile("^(.+)\\.java$"), null, true);
|
||||
}
|
||||
|
||||
@TestMetadata("InnerClassTypeAnnotation.java")
|
||||
public void testInnerClassTypeAnnotation() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/InnerClassTypeAnnotation.java");
|
||||
@TestMetadata("Basic.java")
|
||||
public void testBasic() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeParameterAnnotations/Basic.java");
|
||||
}
|
||||
|
||||
@TestMetadata("MapRemove.java")
|
||||
public void testMapRemove() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/MapRemove.java");
|
||||
@TestMetadata("Basic_DisabledImprovements.java")
|
||||
public void testBasic_DisabledImprovements() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeParameterAnnotations/Basic_DisabledImprovements.java");
|
||||
}
|
||||
}
|
||||
|
||||
@TestMetadata("compiler/testData/loadJava8/compiledJava/typeUseAnnotations")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
@RunWith(JUnit3RunnerWithInners.class)
|
||||
public static class TypeUseAnnotations extends AbstractJvm8RuntimeDescriptorLoaderTest {
|
||||
private void runTest(String testDataFilePath) {
|
||||
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
|
||||
}
|
||||
|
||||
@TestMetadata("ParameterNames.java")
|
||||
public void testParameterNames() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/ParameterNames.java");
|
||||
public void testAllFilesPresentInTypeUseAnnotations() {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/loadJava8/compiledJava/typeUseAnnotations"), Pattern.compile("^(.+)\\.java$"), null, true);
|
||||
}
|
||||
|
||||
@TestMetadata("compiler/testData/loadJava8/compiledJava/typeParameterAnnotations")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
@RunWith(JUnit3RunnerWithInners.class)
|
||||
public static class TypeParameterAnnotations extends AbstractJvm8RuntimeDescriptorLoaderTest {
|
||||
private void runTest(String testDataFilePath) throws Exception {
|
||||
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
|
||||
}
|
||||
|
||||
public void testAllFilesPresentInTypeParameterAnnotations() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/loadJava8/compiledJava/typeParameterAnnotations"), Pattern.compile("^(.+)\\.java$"), null, true);
|
||||
}
|
||||
|
||||
@TestMetadata("Basic.java")
|
||||
public void testBasic() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeParameterAnnotations/Basic.java");
|
||||
}
|
||||
|
||||
@TestMetadata("Basic_DisabledImprovements.java")
|
||||
public void testBasic_DisabledImprovements() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeParameterAnnotations/Basic_DisabledImprovements.java");
|
||||
}
|
||||
@TestMetadata("BaseClassTypeArguments.java")
|
||||
public void testBaseClassTypeArguments() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/BaseClassTypeArguments.java");
|
||||
}
|
||||
|
||||
@TestMetadata("compiler/testData/loadJava8/compiledJava/typeUseAnnotations")
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
@RunWith(JUnit3RunnerWithInners.class)
|
||||
public static class TypeUseAnnotations extends AbstractJvm8RuntimeDescriptorLoaderTest {
|
||||
private void runTest(String testDataFilePath) throws Exception {
|
||||
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
|
||||
}
|
||||
|
||||
public void testAllFilesPresentInTypeUseAnnotations() throws Exception {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/loadJava8/compiledJava/typeUseAnnotations"), Pattern.compile("^(.+)\\.java$"), null, true);
|
||||
}
|
||||
|
||||
@TestMetadata("BaseClassTypeArguments.java")
|
||||
public void testBaseClassTypeArguments() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/BaseClassTypeArguments.java");
|
||||
}
|
||||
|
||||
@TestMetadata("Basic.java")
|
||||
public void testBasic() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/Basic.java");
|
||||
}
|
||||
|
||||
@TestMetadata("Basic_DisabledImprovements.java")
|
||||
public void testBasic_DisabledImprovements() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/Basic_DisabledImprovements.java");
|
||||
}
|
||||
|
||||
@TestMetadata("ClassTypeParameterBounds.java")
|
||||
public void testClassTypeParameterBounds() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/ClassTypeParameterBounds.java");
|
||||
}
|
||||
|
||||
@TestMetadata("MethodReceiver.java")
|
||||
public void testMethodReceiver() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/MethodReceiver.java");
|
||||
}
|
||||
|
||||
@TestMetadata("MethodTypeParameterBounds.java")
|
||||
public void testMethodTypeParameterBounds() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/MethodTypeParameterBounds.java");
|
||||
}
|
||||
|
||||
@TestMetadata("ReturnType.java")
|
||||
public void testReturnType() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/ReturnType.java");
|
||||
}
|
||||
|
||||
@TestMetadata("ValueArguments.java")
|
||||
public void testValueArguments() throws Exception {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/ValueArguments.java");
|
||||
}
|
||||
@TestMetadata("Basic.java")
|
||||
public void testBasic() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/Basic.java");
|
||||
}
|
||||
|
||||
@TestMetadata("Basic_DisabledImprovements.java")
|
||||
public void testBasic_DisabledImprovements() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/Basic_DisabledImprovements.java");
|
||||
}
|
||||
|
||||
@TestMetadata("ClassTypeParameterBounds.java")
|
||||
public void testClassTypeParameterBounds() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/ClassTypeParameterBounds.java");
|
||||
}
|
||||
|
||||
@TestMetadata("MethodReceiver.java")
|
||||
public void testMethodReceiver() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/MethodReceiver.java");
|
||||
}
|
||||
|
||||
@TestMetadata("MethodTypeParameterBounds.java")
|
||||
public void testMethodTypeParameterBounds() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/MethodTypeParameterBounds.java");
|
||||
}
|
||||
|
||||
@TestMetadata("ReturnType.java")
|
||||
public void testReturnType() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/ReturnType.java");
|
||||
}
|
||||
|
||||
@TestMetadata("ValueArguments.java")
|
||||
public void testValueArguments() {
|
||||
runTest("compiler/testData/loadJava8/compiledJava/typeUseAnnotations/ValueArguments.java");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+3753
-3753
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user