From 4d04de0a96703498babc71754a47df4af1992e62 Mon Sep 17 00:00:00 2001 From: aclement Date: Sat, 4 Oct 2008 00:28:36 +0000 Subject: [PATCH] removing redundant test --- .../tools/MultiProjectIncrementalTests.java | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java index 1c6e8fc03..ed09a5090 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java @@ -205,24 +205,24 @@ public class MultiProjectIncrementalTests extends AbstractMultiProjectIncrementa } } - /** - * Checking return values of the AsmManager API calls that can be invoked post incremental build that tell the caller which - * files had their relationships altered. As well as the affected (woven) files, it is possible to query the aspects that wove - * those files. - */ - public void testChangesOnBuild() throws Exception { - String p = "ChangesOnBuild"; - initialiseProject(p); - build(p); - // Not incremental - checkIfContainsFile(AsmManager.getDefault().getModelChangesOnLastBuild(), "A.java", false); - alter(p, "inc1"); - build(p); - // Incremental - checkIfContainsFile(AsmManager.getDefault().getModelChangesOnLastBuild(), "A.java", true); - checkIfContainsFile(AsmManager.getDefault().getAspectsWeavingFilesOnLastBuild(), "X.java", true); - checkIfContainsFile(AsmManager.getDefault().getAspectsWeavingFilesOnLastBuild(), "Y.java", false); - } + // /** + // * Checking return values of the AsmManager API calls that can be invoked post incremental build that tell the caller which + // * files had their relationships altered. As well as the affected (woven) files, it is possible to query the aspects that wove + // * those files. + // */ + // public void testChangesOnBuild() throws Exception { + // String p = "ChangesOnBuild"; + // initialiseProject(p); + // build(p); + // // Not incremental + // checkIfContainsFile(AsmManager.getDefault().getModelChangesOnLastBuild(), "A.java", false); + // alter(p, "inc1"); + // build(p); + // // Incremental + // checkIfContainsFile(AsmManager.getDefault().getModelChangesOnLastBuild(), "A.java", true); + // checkIfContainsFile(AsmManager.getDefault().getAspectsWeavingFilesOnLastBuild(), "X.java", true); + // checkIfContainsFile(AsmManager.getDefault().getAspectsWeavingFilesOnLastBuild(), "Y.java", false); + // } public void testITDIncremental_pr192877() { String p = "PR192877"; -- 2.39.5