[Test] Regenerate tests after two previous commits

This commit is contained in:
Dmitriy Novozhilov
2024-02-16 13:04:43 +02:00
committed by Space Team
parent d9beae0556
commit acf2296590
822 changed files with 1698183 additions and 1698183 deletions
@@ -19,44 +19,44 @@ import java.util.regex.Pattern;
@TestMetadata("plugins/assign-plugin/testData/diagnostics")
@TestDataPath("$PROJECT_ROOT")
public class AssignmentPluginDiagnosticTestGenerated extends AbstractAssignmentPluginDiagnosticTest {
@Test
public void testAllFilesPresentInDiagnostics() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/assign-plugin/testData/diagnostics"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
}
@Test
public void testAllFilesPresentInDiagnostics() {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/assign-plugin/testData/diagnostics"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
}
@Test
@TestMetadata("incorrectUsage.kt")
public void testIncorrectUsage() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/incorrectUsage.kt");
}
@Test
@TestMetadata("incorrectUsage.kt")
public void testIncorrectUsage() {
runTest("plugins/assign-plugin/testData/diagnostics/incorrectUsage.kt");
}
@Test
@TestMetadata("localVariables.kt")
public void testLocalVariables() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/localVariables.kt");
}
@Test
@TestMetadata("localVariables.kt")
public void testLocalVariables() {
runTest("plugins/assign-plugin/testData/diagnostics/localVariables.kt");
}
@Test
@TestMetadata("methodDeclaration.kt")
public void testMethodDeclaration() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/methodDeclaration.kt");
}
@Test
@TestMetadata("methodDeclaration.kt")
public void testMethodDeclaration() {
runTest("plugins/assign-plugin/testData/diagnostics/methodDeclaration.kt");
}
@Test
@TestMetadata("noAnnotation.kt")
public void testNoAnnotation() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/noAnnotation.kt");
}
@Test
@TestMetadata("noAnnotation.kt")
public void testNoAnnotation() {
runTest("plugins/assign-plugin/testData/diagnostics/noAnnotation.kt");
}
@Test
@TestMetadata("otherOperators.kt")
public void testOtherOperators() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/otherOperators.kt");
}
@Test
@TestMetadata("otherOperators.kt")
public void testOtherOperators() {
runTest("plugins/assign-plugin/testData/diagnostics/otherOperators.kt");
}
@Test
@TestMetadata("plusAssignPrecedence.kt")
public void testPlusAssignPrecedence() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/plusAssignPrecedence.kt");
}
@Test
@TestMetadata("plusAssignPrecedence.kt")
public void testPlusAssignPrecedence() {
runTest("plugins/assign-plugin/testData/diagnostics/plusAssignPrecedence.kt");
}
}
@@ -20,50 +20,50 @@ import java.util.regex.Pattern;
@TestMetadata("plugins/assign-plugin/testData/codegen")
@TestDataPath("$PROJECT_ROOT")
public class FirLightTreeBlackBoxCodegenTestForAssignmentPluginGenerated extends AbstractFirLightTreeBlackBoxCodegenTestForAssignmentPlugin {
@Test
public void testAllFilesPresentInCodegen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/assign-plugin/testData/codegen"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), TargetBackend.JVM_IR, true);
}
@Test
public void testAllFilesPresentInCodegen() {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/assign-plugin/testData/codegen"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), TargetBackend.JVM_IR, true);
}
@Test
@TestMetadata("annotation.kt")
public void testAnnotation() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/annotation.kt");
}
@Test
@TestMetadata("annotation.kt")
public void testAnnotation() {
runTest("plugins/assign-plugin/testData/codegen/annotation.kt");
}
@Test
@TestMetadata("otherOperators.kt")
public void testOtherOperators() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/otherOperators.kt");
}
@Test
@TestMetadata("otherOperators.kt")
public void testOtherOperators() {
runTest("plugins/assign-plugin/testData/codegen/otherOperators.kt");
}
@Test
@TestMetadata("plusAssignPrecedence.kt")
public void testPlusAssignPrecedence() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/plusAssignPrecedence.kt");
}
@Test
@TestMetadata("plusAssignPrecedence.kt")
public void testPlusAssignPrecedence() {
runTest("plugins/assign-plugin/testData/codegen/plusAssignPrecedence.kt");
}
@Test
@TestMetadata("qualifiedAnnotation.kt")
public void testQualifiedAnnotation() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/qualifiedAnnotation.kt");
}
@Test
@TestMetadata("qualifiedAnnotation.kt")
public void testQualifiedAnnotation() {
runTest("plugins/assign-plugin/testData/codegen/qualifiedAnnotation.kt");
}
@Test
@TestMetadata("supportedUsage.kt")
public void testSupportedUsage() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/supportedUsage.kt");
}
@Test
@TestMetadata("supportedUsage.kt")
public void testSupportedUsage() {
runTest("plugins/assign-plugin/testData/codegen/supportedUsage.kt");
}
@Test
@TestMetadata("typealias.kt")
public void testTypealias() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/typealias.kt");
}
@Test
@TestMetadata("typealias.kt")
public void testTypealias() {
runTest("plugins/assign-plugin/testData/codegen/typealias.kt");
}
@Test
@TestMetadata("varBehaviour.kt")
public void testVarBehaviour() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/varBehaviour.kt");
}
@Test
@TestMetadata("varBehaviour.kt")
public void testVarBehaviour() {
runTest("plugins/assign-plugin/testData/codegen/varBehaviour.kt");
}
}
@@ -19,44 +19,44 @@ import java.util.regex.Pattern;
@TestMetadata("plugins/assign-plugin/testData/diagnostics")
@TestDataPath("$PROJECT_ROOT")
public class FirPsiAssignmentPluginDiagnosticTestGenerated extends AbstractFirPsiAssignmentPluginDiagnosticTest {
@Test
public void testAllFilesPresentInDiagnostics() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/assign-plugin/testData/diagnostics"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
}
@Test
public void testAllFilesPresentInDiagnostics() {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/assign-plugin/testData/diagnostics"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), true);
}
@Test
@TestMetadata("incorrectUsage.kt")
public void testIncorrectUsage() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/incorrectUsage.kt");
}
@Test
@TestMetadata("incorrectUsage.kt")
public void testIncorrectUsage() {
runTest("plugins/assign-plugin/testData/diagnostics/incorrectUsage.kt");
}
@Test
@TestMetadata("localVariables.kt")
public void testLocalVariables() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/localVariables.kt");
}
@Test
@TestMetadata("localVariables.kt")
public void testLocalVariables() {
runTest("plugins/assign-plugin/testData/diagnostics/localVariables.kt");
}
@Test
@TestMetadata("methodDeclaration.kt")
public void testMethodDeclaration() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/methodDeclaration.kt");
}
@Test
@TestMetadata("methodDeclaration.kt")
public void testMethodDeclaration() {
runTest("plugins/assign-plugin/testData/diagnostics/methodDeclaration.kt");
}
@Test
@TestMetadata("noAnnotation.kt")
public void testNoAnnotation() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/noAnnotation.kt");
}
@Test
@TestMetadata("noAnnotation.kt")
public void testNoAnnotation() {
runTest("plugins/assign-plugin/testData/diagnostics/noAnnotation.kt");
}
@Test
@TestMetadata("otherOperators.kt")
public void testOtherOperators() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/otherOperators.kt");
}
@Test
@TestMetadata("otherOperators.kt")
public void testOtherOperators() {
runTest("plugins/assign-plugin/testData/diagnostics/otherOperators.kt");
}
@Test
@TestMetadata("plusAssignPrecedence.kt")
public void testPlusAssignPrecedence() throws Exception {
runTest("plugins/assign-plugin/testData/diagnostics/plusAssignPrecedence.kt");
}
@Test
@TestMetadata("plusAssignPrecedence.kt")
public void testPlusAssignPrecedence() {
runTest("plugins/assign-plugin/testData/diagnostics/plusAssignPrecedence.kt");
}
}
@@ -20,50 +20,50 @@ import java.util.regex.Pattern;
@TestMetadata("plugins/assign-plugin/testData/codegen")
@TestDataPath("$PROJECT_ROOT")
public class IrBlackBoxCodegenTestAssignmentPluginGenerated extends AbstractIrBlackBoxCodegenTestAssignmentPlugin {
@Test
public void testAllFilesPresentInCodegen() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/assign-plugin/testData/codegen"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), TargetBackend.JVM_IR, true);
}
@Test
public void testAllFilesPresentInCodegen() {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("plugins/assign-plugin/testData/codegen"), Pattern.compile("^(.+)\\.kt$"), Pattern.compile("^(.+)\\.fir\\.kts?$"), TargetBackend.JVM_IR, true);
}
@Test
@TestMetadata("annotation.kt")
public void testAnnotation() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/annotation.kt");
}
@Test
@TestMetadata("annotation.kt")
public void testAnnotation() {
runTest("plugins/assign-plugin/testData/codegen/annotation.kt");
}
@Test
@TestMetadata("otherOperators.kt")
public void testOtherOperators() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/otherOperators.kt");
}
@Test
@TestMetadata("otherOperators.kt")
public void testOtherOperators() {
runTest("plugins/assign-plugin/testData/codegen/otherOperators.kt");
}
@Test
@TestMetadata("plusAssignPrecedence.kt")
public void testPlusAssignPrecedence() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/plusAssignPrecedence.kt");
}
@Test
@TestMetadata("plusAssignPrecedence.kt")
public void testPlusAssignPrecedence() {
runTest("plugins/assign-plugin/testData/codegen/plusAssignPrecedence.kt");
}
@Test
@TestMetadata("qualifiedAnnotation.kt")
public void testQualifiedAnnotation() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/qualifiedAnnotation.kt");
}
@Test
@TestMetadata("qualifiedAnnotation.kt")
public void testQualifiedAnnotation() {
runTest("plugins/assign-plugin/testData/codegen/qualifiedAnnotation.kt");
}
@Test
@TestMetadata("supportedUsage.kt")
public void testSupportedUsage() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/supportedUsage.kt");
}
@Test
@TestMetadata("supportedUsage.kt")
public void testSupportedUsage() {
runTest("plugins/assign-plugin/testData/codegen/supportedUsage.kt");
}
@Test
@TestMetadata("typealias.kt")
public void testTypealias() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/typealias.kt");
}
@Test
@TestMetadata("typealias.kt")
public void testTypealias() {
runTest("plugins/assign-plugin/testData/codegen/typealias.kt");
}
@Test
@TestMetadata("varBehaviour.kt")
public void testVarBehaviour() throws Exception {
runTest("plugins/assign-plugin/testData/codegen/varBehaviour.kt");
}
@Test
@TestMetadata("varBehaviour.kt")
public void testVarBehaviour() {
runTest("plugins/assign-plugin/testData/codegen/varBehaviour.kt");
}
}