]> source.dussan.org Git - aspectj.git/commitdiff
278496: refactor pull up
authoraclement <aclement>
Tue, 3 Aug 2010 22:24:44 +0000 (22:24 +0000)
committeraclement <aclement>
Tue, 3 Aug 2010 22:24:44 +0000 (22:24 +0000)
tests/src/org/aspectj/systemtest/incremental/tools/AbstractMultiProjectIncrementalAjdeInteractionTestbed.java
tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java

index eea4d8a6869d6d04bb547bc951b8e9c30e4e1e66..9a54a926ce8815c610eda69e0a70250623df9341 100644 (file)
@@ -254,4 +254,8 @@ public class AbstractMultiProjectIncrementalAjdeInteractionTestbed extends AjdeI
                getModelFor(projectName).dumprels(pw);
                pw.flush();
        }
+
+       protected void assertNoErrors(String projectName) {
+               assertTrue("Should be no errors, but got " + getErrorMessages(projectName), getErrorMessages(projectName).size() == 0);
+       }
 }
index 5dcb5316fcc8f65b9d270b271e147fd10d7c2472..923cb6fc330e73c92944ab26f22e83aa6b558f72 100644 (file)
@@ -3895,8 +3895,4 @@ public class MultiProjectIncrementalTests extends AbstractMultiProjectIncrementa
                return new File(projDir, "bin" + File.separator + filename);
        }
 
-       private void assertNoErrors(String projectName) {
-               assertTrue("Should be no errors, but got " + getErrorMessages(projectName), getErrorMessages(projectName).size() == 0);
-       }
-
 }
\ No newline at end of file