make classes abstract, so their tests are not run directly

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@4287 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
msridhar1 2011-10-31 18:47:14 +00:00
parent e672a1ece8
commit cb37e60635
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ import com.ibm.wala.ipa.callgraph.CallGraph;
import com.ibm.wala.ipa.callgraph.ContextSelector;
import com.ibm.wala.util.CancelException;
public class TestForInLoopHack extends TestJSCallGraphShape {
public abstract class TestForInLoopHack extends TestJSCallGraphShape {
@Before
public void config() {

View File

@ -11,7 +11,7 @@ import com.ibm.wala.cast.js.ipa.callgraph.JSCFABuilder;
import com.ibm.wala.ipa.callgraph.CallGraph;
import com.ibm.wala.util.CancelException;
public class TestMozillaBugPages extends TestJSCallGraphShape {
public abstract class TestMozillaBugPages extends TestJSCallGraphShape {
public static void main(String[] args) {
justThisTest(TestMozillaBugPages.class);