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 Nov 7, 2022
1 parent 1cdf58a commit abd8147
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Path;

public class UITestCaseWithProject extends BaseUITestCase {
public abstract class UITestCaseWithProject extends BaseUITestCase {
ArrayList<File> tempFiles = new ArrayList<>();
protected File tmpDir;
protected ICProject cproject;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.text.contentassist.ICompletionProposal;

public class CompletionTestBase extends AbstractContentAssistTest {
public abstract class CompletionTestBase extends AbstractContentAssistTest {
private static final String HEADER_FILE_NAME = "CompletionTest.h";
private static final String SOURCE_FILE_NAME = "CompletionTest.cpp";
private static final String CURSOR_LOCATION_TAG = "/*cursor*/";
Expand Down

0 comments on commit abd8147

Please sign in to comment.