Skip to content

Commit

Permalink
copy tests back to usual test folder
Browse files Browse the repository at this point in the history
  • Loading branch information
carstenartur committed Sep 21, 2024
1 parent 7adc4f4 commit 62500c8
Show file tree
Hide file tree
Showing 13 changed files with 2,344 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1519,11 +1519,6 @@ public BiConsumer<? extends ASTNode, E> addMethodInvocation(BiConsumer<MethodInv
return consumermap.put(VisitorEnum.MethodInvocation, bc);
}

// public BiConsumer<? extends ASTNode, E> addMethodInvocation(String methodname, BiConsumer<MethodInvocation, E> bc) {
// this.consumerdata.put(VisitorEnum.MethodInvocation, methodname);
// return consumermap.put(VisitorEnum.MethodInvocation, bc);
// }

public BiConsumer<? extends ASTNode, E> addMethodInvocation(String methodname, BiConsumer<MethodInvocation, E> bc) {
this.consumerdata.put(VisitorEnum.MethodInvocation, Map.ofEntries(
new AbstractMap.SimpleEntry<>(METHODNAME, methodname)
Expand Down
9 changes: 8 additions & 1 deletion org.eclipse.jdt.ui.tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,19 @@ Require-Bundle:
org.eclipse.jdt.astview,
org.eclipse.compare.core,
org.eclipse.compare,
org.eclipse.core.tests.harness
org.eclipse.core.tests.harness,
junit-jupiter-api
Bundle-RequiredExecutionEnvironment: JavaSE-17
Eclipse-BundleShape: dir
Bundle-ActivationPolicy: lazy
Import-Package: org.assertj.core.api;version="3.24.2",
org.junit.jupiter.api,
org.junit.jupiter.api.extension,
org.junit.jupiter.params,
org.junit.jupiter.params.aggregator,
org.junit.jupiter.params.converter,
org.junit.jupiter.params.provider,
org.junit.jupiter.params.support,
org.junit.platform.suite.api,
org.junit.platform.suite.commons;status=INTERNAL,
org.junit.platform.suite.engine;status=INTERNAL
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
import org.eclipse.jdt.ui.tests.model.ContentProviderTests;
import org.eclipse.jdt.ui.tests.packageview.PackageExplorerTests;
import org.eclipse.jdt.ui.tests.quickfix.QuickFixTestSuite;
import org.eclipse.jdt.ui.tests.quickfix.Java10.QuickFixJava10TestSuite;
import org.eclipse.jdt.ui.tests.quickfix.Java8.QuickFixJava8TestSuite;
import org.eclipse.jdt.ui.tests.refactoring.RefactoringTests;
import org.eclipse.jdt.ui.tests.search.SearchTest;
import org.eclipse.jdt.ui.tests.views.SmokeViewsTest;
Expand All @@ -56,6 +58,8 @@
CoreTests.class,
CoreTestSuite.class,
QuickFixTestSuite.class,
QuickFixJava8TestSuite.class,
QuickFixJava10TestSuite.class,

NewJavaProjectWizardTest.class,
NewTypeWizardTest.class,
Expand Down
Loading

0 comments on commit 62500c8

Please sign in to comment.