Skip to content

Commit

Permalink
Add some tests to filtered list to see if it works
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Stryker <stryker@redhat.com>
  • Loading branch information
Rob Stryker committed Sep 12, 2024
1 parent e776cf8 commit eb9fb68
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import org.eclipse.jdt.core.formatter.CodeFormatter;
import org.eclipse.jdt.core.formatter.DefaultCodeFormatterConstants;
import org.eclipse.jdt.core.formatter.IndentManipulation;
import org.eclipse.jdt.core.tests.javac.JavacTestIgnore;
import org.eclipse.jdt.core.tests.model.AbstractJavaModelTests;
import org.eclipse.jdt.core.tests.util.Util;
import org.eclipse.jdt.internal.compiler.impl.CompilerOptions;
Expand All @@ -49,6 +50,7 @@
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.Region;
import org.eclipse.text.edits.TextEdit;
import org.junit.experimental.categories.Category;

import junit.framework.Test;

Expand Down Expand Up @@ -458,20 +460,25 @@ String getSource(ASTNode astNode, char[] source) {
return result;
}

@Category(value=JavacTestIgnore.class) @JavacTestIgnore(cause=JavacTestIgnore.JDT_VIOLATES_SPEC)
public void test001() {
runTest("test001", "A.java");//$NON-NLS-1$ //$NON-NLS-2$
}
@Category(value=JavacTestIgnore.class) @JavacTestIgnore(cause=JavacTestIgnore.JDT_VIOLATES_SPEC)
public void test002() {
runTest("test002", "A.java");//$NON-NLS-1$ //$NON-NLS-2$
}

@Category(value=JavacTestIgnore.class) @JavacTestIgnore(cause=JavacTestIgnore.JDT_VIOLATES_SPEC)
public void test003() {
runTest("test003", "A.java");//$NON-NLS-1$ //$NON-NLS-2$
}

@Category(value=JavacTestIgnore.class) @JavacTestIgnore(cause=JavacTestIgnore.JDT_VIOLATES_SPEC)
public void test004() {
runTest("test004", "A.java");//$NON-NLS-1$ //$NON-NLS-2$
}
@Category(value=JavacTestIgnore.class) @JavacTestIgnore(cause=JavacTestIgnore.JDT_VIOLATES_SPEC)
public void test005() {
runTest("test005", "A.java");//$NON-NLS-1$ //$NON-NLS-2$
}
Expand Down

0 comments on commit eb9fb68

Please sign in to comment.