Skip to content

Commit

Permalink
Add missing abstract keyword to abstract tests
Browse files Browse the repository at this point in the history
Part of #117
  • Loading branch information
jonahgraham committed Oct 26, 2022
1 parent a827d71 commit 128de5d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit;
import org.eclipse.cdt.internal.core.parser.ParserException;

public class AST2CPPTestBase extends AST2TestBase {
public abstract class AST2CPPTestBase extends AST2TestBase {
public AST2CPPTestBase() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
/**
* @author dsteffle
*/
public class AST2SelectionParseTestBase extends FileBasePluginTestCase {
public abstract class AST2SelectionParseTestBase extends FileBasePluginTestCase {

public AST2SelectionParseTestBase() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
/**
* @author dsteffle
*/
public class AST2SpecTestBase extends AST2TestBase {
public abstract class AST2SpecTestBase extends AST2TestBase {
public AST2SpecTestBase() {
super();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
/**
* @author aniefer
*/
public class AST2TestBase extends SemanticTestBase {
public abstract class AST2TestBase extends SemanticTestBase {
public final static String TEST_CODE = "<testcode>";
protected static final IParserLogService NULL_LOG = new NullLogService();
protected static boolean sValidateCopy;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @author johnc
*
*/
public class DOMSelectionParseTestBase extends DOMFileBasePluginTest {
public abstract class DOMSelectionParseTestBase extends DOMFileBasePluginTest {

public DOMSelectionParseTestBase() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
/**
* Common base class for AST2 and index tests.
*/
public class SemanticTestBase extends BaseTestCase {
public abstract class SemanticTestBase extends BaseTestCase {
public SemanticTestBase() {
super();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

import junit.framework.AssertionFailedError;

public class CompletionTestBase extends BaseTestCase {
public abstract class CompletionTestBase extends BaseTestCase {

private static final IParserLogService NULL_LOG = new NullLogService();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;

public class IndexTestBase extends BaseTestCase {
public abstract class IndexTestBase extends BaseTestCase {
public IndexTestBase(String name) {
super(name);
}
Expand Down

0 comments on commit 128de5d

Please sign in to comment.