Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmisinco2013-09-26 22:22:28 +0000
committerRoberto E. Escobar2013-10-12 01:16:41 +0000
commit3553e04b163167f7ad6a6d753e5cb58ca805ce95 (patch)
treef0460b231fc22d87b632d85bb3401f0f73ff055c /plugins/org.eclipse.osee.ats.core.client.test
parent8947a09c304cf45ca4beba0af5a15e220f118770 (diff)
downloadorg.eclipse.osee-3553e04b163167f7ad6a6d753e5cb58ca805ce95.tar.gz
org.eclipse.osee-3553e04b163167f7ad6a6d753e5cb58ca805ce95.tar.xz
org.eclipse.osee-3553e04b163167f7ad6a6d753e5cb58ca805ce95.zip
feature[ats_8G0FW]: Remove HRIDs as an ID
Diffstat (limited to 'plugins/org.eclipse.osee.ats.core.client.test')
-rw-r--r--plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/internal/config/TeamDefinitionTest.java14
-rw-r--r--plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/internal/store/AtsVersionCacheTest.java8
2 files changed, 11 insertions, 11 deletions
diff --git a/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/internal/config/TeamDefinitionTest.java b/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/internal/config/TeamDefinitionTest.java
index 1bc36d862b6..c25247a040f 100644
--- a/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/internal/config/TeamDefinitionTest.java
+++ b/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/internal/config/TeamDefinitionTest.java
@@ -10,9 +10,9 @@
*******************************************************************************/
package org.eclipse.osee.ats.core.client.internal.config;
-import org.junit.Assert;
import org.eclipse.osee.ats.api.version.IAtsVersionService;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
+import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
@@ -36,15 +36,15 @@ public class TeamDefinitionTest {
@Test
public void testGetTeamDefinitionHoldingVersions() throws OseeCoreException {
- TeamDefinition teamDef1 = new TeamDefinition("Team Def 1", "td1guid", "ADSF");
+ TeamDefinition teamDef1 = new TeamDefinition("Team Def 1", "td1guid");
- TeamDefinition teamDef1_child1 = new TeamDefinition("Team Def 1_1", "td1_1guid", "ADSF");
+ TeamDefinition teamDef1_child1 = new TeamDefinition("Team Def 1_1", "td1_1guid");
teamDef1_child1.setParentTeamDef(teamDef1);
Assert.assertNull(teamDef1.getTeamDefinitionHoldingVersions());
Assert.assertNull(teamDef1_child1.getTeamDefinitionHoldingVersions());
- teamDef1.getVersions().add(new Version(versionService, "ver1", "ver1guid", "ASDF"));
+ teamDef1.getVersions().add(new Version(versionService, "ver1", "ver1guid"));
Assert.assertEquals(teamDef1, teamDef1.getTeamDefinitionHoldingVersions());
Assert.assertEquals(teamDef1, teamDef1_child1.getTeamDefinitionHoldingVersions());
@@ -52,15 +52,15 @@ public class TeamDefinitionTest {
@Test
public void testIsTeamUsesVersions() throws OseeCoreException {
- TeamDefinition teamDef1 = new TeamDefinition("Team Def 1", "td1guid", "ADSF");
+ TeamDefinition teamDef1 = new TeamDefinition("Team Def 1", "td1guid");
- TeamDefinition teamDef1_child1 = new TeamDefinition("Team Def 1_1", "td1_1guid", "ADSF");
+ TeamDefinition teamDef1_child1 = new TeamDefinition("Team Def 1_1", "td1_1guid");
teamDef1_child1.setParentTeamDef(teamDef1);
Assert.assertFalse(teamDef1.isTeamUsesVersions());
Assert.assertFalse(teamDef1_child1.isTeamUsesVersions());
- teamDef1.getVersions().add(new Version(versionService, "ver1", "ver1guid", "ASDF"));
+ teamDef1.getVersions().add(new Version(versionService, "ver1", "ver1guid"));
Assert.assertTrue(teamDef1.isTeamUsesVersions());
Assert.assertTrue(teamDef1_child1.isTeamUsesVersions());
diff --git a/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/internal/store/AtsVersionCacheTest.java b/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/internal/store/AtsVersionCacheTest.java
index 62055febe3b..214d288b35f 100644
--- a/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/internal/store/AtsVersionCacheTest.java
+++ b/plugins/org.eclipse.osee.ats.core.client.test/src/org/eclipse/osee/ats/core/client/internal/store/AtsVersionCacheTest.java
@@ -45,9 +45,9 @@ public class AtsVersionCacheTest {
MockitoAnnotations.initMocks(this);
when(teamWf.getGuid()).thenReturn("abcdefghijkl");
- when(teamWf.getHumanReadableId()).thenReturn("ZAQWS");
+ when(teamWf.getAtsId()).thenReturn("ZAQWS");
when(atsVersion.getName()).thenReturn("Test Version");
- when(atsVersion.getHumanReadableId()).thenReturn("WSXZA");
+ when(atsVersion.getGuid()).thenReturn("adsf");
AtsArtifactConfigCache cache = new AtsArtifactConfigCache();
cache.cacheByTag(teamWf.getGuid(), atsVersion);
@@ -65,8 +65,8 @@ public class AtsVersionCacheTest {
@Test
public void testCache() throws Exception {
IAtsVersion testVersion = atsVersionCache.cache(teamWf, atsVersionCache.getVersion(teamWf));
- String hrid = testVersion.getHumanReadableId();
- assertEquals("WSXZA", hrid);
+ String guid = testVersion.getGuid();
+ assertEquals("adsf", guid);
}
@Test

Back to the top