Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2010-06-17 17:49:21 +0000
committerddunne2010-06-17 17:49:21 +0000
commitee2a9bd56c669e5fcc8ee5ede44fcc1ce439b3e4 (patch)
tree33f901ec12a2ede8026d530272d907c99d579687
parent3603c726cc5d567ebfe1371329ca76848513fd6c (diff)
downloadorg.eclipse.osee-ee2a9bd56c669e5fcc8ee5ede44fcc1ce439b3e4.tar.gz
org.eclipse.osee-ee2a9bd56c669e5fcc8ee5ede44fcc1ce439b3e4.tar.xz
org.eclipse.osee-ee2a9bd56c669e5fcc8ee5ede44fcc1ce439b3e4.zip
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/ArtifactEventManagerTest.java13
1 files changed, 7 insertions, 6 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/ArtifactEventManagerTest.java b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/ArtifactEventManagerTest.java
index 34ab8ec22cc..f4e82d3e4b3 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/ArtifactEventManagerTest.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/ArtifactEventManagerTest.java
@@ -61,7 +61,7 @@ public class ArtifactEventManagerTest {
final Set<EventBasicGuidArtifact> resultEventArtifacts = new HashSet<EventBasicGuidArtifact>();
final Set<EventBasicGuidRelation> resultEventRelations = new HashSet<EventBasicGuidRelation>();
public static Sender resultSender = null;
- public static List<String> ignoreLogging =
+ public static List<String> ignoreLoggingRemote =
Arrays.asList("OEM: PersistEvent Loopback enabled", "OEM: kickArtifactReloadEvent Loopback enabled",
"OEM2: PersistEvent Loopback enabled", "OEM2: kickArtifactReloadEvent Loopback enabled");
public static int incrementingGammaId = 2231;
@@ -136,7 +136,8 @@ public class ArtifactEventManagerTest {
remoteInjection_relations_addNewRelationWithRationale(rootArt, injectArt);
remoteInjection_relations_modifyRelationRationale(rootArt, injectArt);
- TestUtil.severeLoggingEnd(monitorLog, (isRemoteTest() ? ignoreLogging : new ArrayList<String>()));
+ TestUtil.severeLoggingEnd(monitorLog,
+ (isRemoteTest() ? ignoreLoggingRemote : Arrays.asList("Duplicate relation objects")));
}
@org.junit.Test
@@ -155,7 +156,7 @@ public class ArtifactEventManagerTest {
testArtifactRelationEvents__modifyRelation(newArt);
testArtifactRelationEvents__deleteArtifact(newArt);
- TestUtil.severeLoggingEnd(monitorLog, (isRemoteTest() ? ignoreLogging : new ArrayList<String>()));
+ TestUtil.severeLoggingEnd(monitorLog, (isRemoteTest() ? ignoreLoggingRemote : new ArrayList<String>()));
}
private Artifact testArtifactRelationEvents__addArtifact() throws Exception {
@@ -679,7 +680,7 @@ public class ArtifactEventManagerTest {
Assert.assertEquals(newArt.getArtifactType().getGuid(), guidArt.getArtTypeGuid());
Assert.assertEquals(newArt.getBranch().getGuid(), guidArt.getBranchGuid());
- TestUtil.severeLoggingEnd(monitorLog, (isRemoteTest() ? ignoreLogging : new ArrayList<String>()));
+ TestUtil.severeLoggingEnd(monitorLog, (isRemoteTest() ? ignoreLoggingRemote : new ArrayList<String>()));
}
protected boolean isRemoteTest() {
@@ -721,7 +722,7 @@ public class ArtifactEventManagerTest {
Assert.assertEquals(newArt.getArtifactType().getGuid(), guidArt.getArtTypeGuid());
Assert.assertEquals(newArt.getBranch().getGuid(), guidArt.getBranchGuid());
}
- TestUtil.severeLoggingEnd(monitorLog, (isRemoteTest() ? ignoreLogging : new ArrayList<String>()));
+ TestUtil.severeLoggingEnd(monitorLog, (isRemoteTest() ? ignoreLoggingRemote : new ArrayList<String>()));
}
@org.junit.Test
@@ -765,7 +766,7 @@ public class ArtifactEventManagerTest {
Artifact changedArt = ArtifactQuery.getArtifactFromId(newArt.getGuid(), newArt.getBranch());
Assert.assertEquals(CoreArtifactTypes.Heading.getGuid(), changedArt.getArtifactType().getGuid());
- TestUtil.severeLoggingEnd(monitorLog, (isRemoteTest() ? ignoreLogging : new ArrayList<String>()));
+ TestUtil.severeLoggingEnd(monitorLog, (isRemoteTest() ? ignoreLoggingRemote : new ArrayList<String>()));
}
/**

Back to the top