Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2010-01-28 23:31:07 +0000
committerrelves2010-01-28 23:31:07 +0000
commit9bf7462d812cc1b6b83a9bf3deac16961b218154 (patch)
treeed69d3d93deab887f0ccbf63d9bb13ce34d24075 /org.eclipse.mylyn.bugzilla.tests/src
parent6950d62a41700b691e91a27e959657a52d63f140 (diff)
downloadorg.eclipse.mylyn.tasks-9bf7462d812cc1b6b83a9bf3deac16961b218154.tar.gz
org.eclipse.mylyn.tasks-9bf7462d812cc1b6b83a9bf3deac16961b218154.tar.xz
org.eclipse.mylyn.tasks-9bf7462d812cc1b6b83a9bf3deac16961b218154.zip
REOPENED - bug 290465: fix Bugzilla test suite
https://bugs.eclipse.org/bugs/show_bug.cgi?id=290465
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.tests/src')
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java23
1 files changed, 15 insertions, 8 deletions
diff --git a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java
index 89f871b02..f629cc8c0 100644
--- a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java
+++ b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java
@@ -53,18 +53,20 @@ public class BugzillaFixture extends TestFixture {
public static BugzillaFixture BUGS_2_18 = new BugzillaFixture(BugzillaTestConstants.TEST_BUGZILLA_218_URL,//
"2.18.6", "");
+ /**
+ * @deprecated not supported any more
+ */
+ @Deprecated
public static BugzillaFixture BUGS_2_20 = new BugzillaFixture(BugzillaTestConstants.TEST_BUGZILLA_220_URL, //
"2.20.7", "");
+ /**
+ * @deprecated not supported any more
+ */
+ @Deprecated
public static BugzillaFixture BUGS_2_22 = new BugzillaFixture(BugzillaTestConstants.TEST_BUGZILLA_222_URL, //
"2.22.7", "");
- public static BugzillaFixture BUGS_3_0 = new BugzillaFixture(BugzillaTestConstants.TEST_BUGZILLA_30_URL, //
- "3.0.8", "");
-
- public static BugzillaFixture BUGS_3_2 = new BugzillaFixture(BugzillaTestConstants.TEST_BUGZILLA_32_URL, //
- "3.2.4", "");
-
/**
* @deprecated use latest 3.2 -> BUGS_3_2
*/
@@ -79,6 +81,12 @@ public class BugzillaFixture extends TestFixture {
public static BugzillaFixture BUGS_3_2_3 = new BugzillaFixture(BugzillaTestConstants.TEST_BUGZILLA_323_URL, //
"3.2.3", "");
+ public static BugzillaFixture BUGS_3_0 = new BugzillaFixture(BugzillaTestConstants.TEST_BUGZILLA_30_URL, //
+ "3.0.8", "");
+
+ public static BugzillaFixture BUGS_3_2 = new BugzillaFixture(BugzillaTestConstants.TEST_BUGZILLA_32_URL, //
+ "3.2.4", "");
+
public static BugzillaFixture BUGS_3_4 = new BugzillaFixture(BugzillaTestConstants.TEST_BUGZILLA_34_URL, //
"3.4.4", "");
@@ -87,8 +95,7 @@ public class BugzillaFixture extends TestFixture {
public static BugzillaFixture DEFAULT = BUGS_3_4;
- public static final BugzillaFixture[] ALL = new BugzillaFixture[] { BUGS_2_20, BUGS_2_22, BUGS_3_0, BUGS_3_2,
- BUGS_3_4, BUGS_HEAD };
+ public static final BugzillaFixture[] ALL = new BugzillaFixture[] { BUGS_3_0, BUGS_3_2, BUGS_3_4, BUGS_HEAD };
private final String version;

Back to the top