[Test] Regenerate tests after two previous commits
This commit is contained in:
committed by
Space Team
parent
d9beae0556
commit
acf2296590
+34
-34
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
+39
-39
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
+34
-34
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
+39
-39
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user