diff options
author | Frank Becker | 2012-11-18 12:32:13 -0500 |
---|---|---|
committer | Gerrit Code Review @ Eclipse.org | 2012-11-18 12:37:34 -0500 |
commit | 0c7924dc3215b1403bf760edc4cf97f4d054c65c (patch) | |
tree | 32614519fd956495823baa3fc1d030815d47d588 /org.eclipse.mylyn.bugzilla.tests/src | |
parent | b0003768d5806c2dbc6fdd0e5ae43afcb3d3e2cd (diff) | |
download | org.eclipse.mylyn.tasks-0c7924dc3215b1403bf760edc4cf97f4d054c65c.tar.gz org.eclipse.mylyn.tasks-0c7924dc3215b1403bf760edc4cf97f4d054c65c.tar.xz org.eclipse.mylyn.tasks-0c7924dc3215b1403bf760edc4cf97f4d054c65c.zip |
372600: redesign of RepositoryConfiguration
create new creation api
Change-Id: If45d6c1daaedeed9771f2aad4bf94775e4da69cb
Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=372600
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.tests/src')
-rw-r--r-- | org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java index 7bdee2973..10710fcc0 100644 --- a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java +++ b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java @@ -384,15 +384,15 @@ public class BugzillaRepositoryConnectorStandaloneTest extends TestCase { connector.removeConfiguration(config); config = new RepositoryConfiguration(); config.setRepositoryUrl(repository.getRepositoryUrl()); - config.addPriority("MostHighest"); - config.addPriority("Highest"); - config.addPriority("Higher"); - config.addPriority("High"); - config.addPriority("Normal"); - config.addPriority("Low"); - config.addPriority("Lower"); - config.addPriority("Lowest"); - config.addPriority("MostLowest"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "MostHighest"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Highest"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Higher"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "High"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Normal"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Low"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Lower"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Lowest"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "MostLowest"); connector.addRepositoryConfiguration(config); taskData.getRoot().createMappedAttribute(BugzillaAttribute.PRIORITY.getKey()).setValue("P1"); @@ -448,15 +448,15 @@ public class BugzillaRepositoryConnectorStandaloneTest extends TestCase { connector.removeConfiguration(config); config = new RepositoryConfiguration(); config.setRepositoryUrl(repository.getRepositoryUrl()); - config.addPriority("MostHighest"); - config.addPriority("Highest"); - config.addPriority("Higher"); - config.addPriority("High"); - config.addPriority("Normal"); - config.addPriority("Low"); - config.addPriority("Lower"); - config.addPriority("Lowest"); - config.addPriority("MostLowest"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "MostHighest"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Highest"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Higher"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "High"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Normal"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Low"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Lower"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Lowest"); + config.addItem2Configuration(BugzillaAttribute.PRIORITY, "MostLowest"); taskData.getRoot().createMappedAttribute(BugzillaAttribute.PRIORITY.getKey()).setValue("P1"); assertEquals(PriorityLevel.P1, mapping.getPriorityLevel()); |