Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2010-10-26 18:43:08 +0000
committerRyan D. Brooks2010-10-26 18:43:08 +0000
commit763556f4abf3d7f6859c147fc0a2ac07b27df7bf (patch)
treeed1357218cfada50b758cf21a0df988db5dba165 /plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee
parentcb0eb867ce89dea9c5dafd0fec58daf84c03a096 (diff)
downloadorg.eclipse.osee-763556f4abf3d7f6859c147fc0a2ac07b27df7bf.tar.gz
org.eclipse.osee-763556f4abf3d7f6859c147fc0a2ac07b27df7bf.tar.xz
org.eclipse.osee-763556f4abf3d7f6859c147fc0a2ac07b27df7bf.zip
refactor: Remove unessecary usage of RelationTypeSideSorter
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/relation/RelationTypeSideSorterTest.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/relation/RelationTypeSideSorterTest.java b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/relation/RelationTypeSideSorterTest.java
index 02b59769da0..f77bbf6329b 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/relation/RelationTypeSideSorterTest.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/relation/RelationTypeSideSorterTest.java
@@ -104,13 +104,6 @@ public class RelationTypeSideSorterTest {
}
@Test
- public void testGetSideName() {
- String expectedSideName =
- relationSide == RelationSide.SIDE_A ? relationType.getSideAName() : relationType.getSideBName();
- Assert.assertEquals(expectedSideName, sorter.getSideName());
- }
-
- @Test
public void testGetSorterId() throws OseeCoreException {
String sorterGuid = orderData.getCurrentSorterGuid(relationType, relationSide);
IRelationSorterId expected = sorterProvider.getRelationOrder(sorterGuid).getSorterId();

Back to the top