| author | Karol M. Wilk | 2010-09-30 21:54:18 (EDT) |
|---|---|---|
| committer | Ryan D. Brooks | 2010-09-30 21:54:18 (EDT) |
| commit | 278b3ebe4efe78de3373ee4daa3e4d211cd2f8f5 (patch) (side-by-side diff) | |
| tree | aa1a10f3592c079a1d1345a221b05b81b4e50363 | |
| parent | ee0ad9caa8fbc4d7d8a952da87e398b2e3e74c2f (diff) | |
| download | org.eclipse.osee-278b3ebe4efe78de3373ee4daa3e4d211cd2f8f5.zip org.eclipse.osee-278b3ebe4efe78de3373ee4daa3e4d211cd2f8f5.tar.gz org.eclipse.osee-278b3ebe4efe78de3373ee4daa3e4d211cd2f8f5.tar.bz2 | |
refinement: TestPlanCompliace System.out.println removal
2 files changed, 4 insertions, 10 deletions
diff --git a/plugins/org.eclipse.osee.define.test/src/org/eclipse/osee/define/test/blam/TestPlanComplianceReportTest.java b/plugins/org.eclipse.osee.define.test/src/org/eclipse/osee/define/test/blam/TestPlanComplianceReportTest.java index 8c40930..5a920ec 100644 --- a/plugins/org.eclipse.osee.define.test/src/org/eclipse/osee/define/test/blam/TestPlanComplianceReportTest.java +++ b/plugins/org.eclipse.osee.define.test/src/org/eclipse/osee/define/test/blam/TestPlanComplianceReportTest.java @@ -87,7 +87,6 @@ public final class TestPlanComplianceReportTest { resultBuffer.toString().contains(EXPECTED_OSEE_ERROR_STYLE)); Assert.assertTrue("No \"OseeBoldStyle\" string found.", resultBuffer.toString().contains(EXPECTED_OSEE_BOLD_STYLE)); - System.out.println(resultBuffer.toString()); new PurgeArtifacts(dummyArtifactList).execute(); buildTest(1, TestStatusEnum.COMPLETED_WITH_ISSUES_CODE, 0); @@ -95,7 +94,6 @@ public final class TestPlanComplianceReportTest { resultBuffer.toString().contains(EXPECTED_OSEE_ERROR_STYLE)); Assert.assertTrue("No \"OseeBoldStyle\" string found.", resultBuffer.toString().contains(EXPECTED_OSEE_BOLD_STYLE)); - System.out.println(resultBuffer.toString()); new PurgeArtifacts(dummyArtifactList).execute(); buildTest(1, TestStatusEnum.COMPLETED_WITH_ISSUES_RESOLVED_CODE, 0); @@ -103,7 +101,6 @@ public final class TestPlanComplianceReportTest { resultBuffer.toString().contains(EXPECTED_OSEE_ERROR_STYLE)); Assert.assertTrue("No \"OseeBoldStyle\" string found.", resultBuffer.toString().contains(EXPECTED_OSEE_BOLD_STYLE)); - System.out.println(resultBuffer.toString()); new PurgeArtifacts(dummyArtifactList).execute(); } diff --git a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/cases/ConflictTestManager.java b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/cases/ConflictTestManager.java index ec531cc..6d121fd 100644 --- a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/cases/ConflictTestManager.java +++ b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/cases/ConflictTestManager.java @@ -118,9 +118,9 @@ public class ConflictTestManager { protected Class<?> clas; protected Branch branch; protected int rootArtifact; - protected String type; + protected IArtifactType type; - protected ArtifactModification(Type itemToChange, Modification modificationToPerform, int rootArtifact, Branch branch, String type, String name) throws OseeCoreException { + protected ArtifactModification(Type itemToChange, Modification modificationToPerform, int rootArtifact, Branch branch, IArtifactType type, String name) throws OseeCoreException { if (!itemToChange.equals(Type.ARTIFACT)) { throw new OseeCoreException("This is the Artifact Constructor"); } @@ -133,23 +133,20 @@ public class ConflictTestManager { } protected ArtifactModification(Type itemToChange, Modification modificationToPerform, Object object, String name, Class<?> clas, String value) throws OseeCoreException { + this(itemToChange, modificationToPerform, -1, null, null, name); if (!itemToChange.equals(Type.ATTRIBUTE)) { throw new OseeCoreException("This is the Attribute Constructor"); } - this.itemToChange = itemToChange; - this.modificationToPerform = modificationToPerform; this.object = object; this.clas = clas; this.value = value; - this.name = name; } protected ArtifactModification(Type itemToChange, Modification modificationToPerform, Object object, Object object2) throws OseeCoreException { + this(itemToChange, modificationToPerform, object, null, null, null); if (!itemToChange.equals(Type.RELATION)) { throw new OseeCoreException("This is the Relation Constructor"); } - this.itemToChange = itemToChange; - this.modificationToPerform = modificationToPerform; this.object = object; this.object2 = object2; } |

