From: aclement Date: Mon, 23 Mar 2009 16:28:51 +0000 (+0000) Subject: removed unnecessary test X-Git-Tag: V1_6_4~42 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bd57a2e9ad8b5e40c110b669df586d97ce1ee323;p=aspectj.git removed unnecessary test --- diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java index 184306f8a..ffb15c619 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java @@ -107,34 +107,6 @@ public class MultiProjectIncrementalTests extends AbstractMultiProjectIncrementa } - public void testWithJP_pr268522() { - String p = "pr268522"; - initialiseProject(p); - build(p); - checkWasFullBuild(); - - IProgramElement root = getModelFor(p).getHierarchy().getRoot(); - dumptree(root, 0); - PrintWriter pw = new PrintWriter(System.out); - try { - getModelFor(p).dumprels(pw); - pw.flush(); - } catch (Exception e) { - } - alter(p, "inc1"); - build(p); - checkWasntFullBuild(); - - root = getModelFor(p).getHierarchy().getRoot(); - dumptree(root, 0); - pw = new PrintWriter(System.out); - try { - getModelFor(p).dumprels(pw); - pw.flush(); - } catch (Exception e) { - } - } - public void testBrokenCodeDeca_268611() { String p = "pr268611"; initialiseProject(p);