Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsminto2010-04-22 16:57:03 +0000
committersminto2010-04-22 16:57:03 +0000
commit62bd0afd92fa909ffc581191b768bcdc34b1fd07 (patch)
tree1159ac32db8b3cef4c17bc293fe8e5b8aaaa49d4
parent610de152db7ae9172109bf0182ca48ad323ee95a (diff)
downloadorg.eclipse.mylyn.tasks-62bd0afd92fa909ffc581191b768bcdc34b1fd07.tar.gz
org.eclipse.mylyn.tasks-62bd0afd92fa909ffc581191b768bcdc34b1fd07.tar.xz
org.eclipse.mylyn.tasks-62bd0afd92fa909ffc581191b768bcdc34b1fd07.zip
remove junit annotations
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaXMLRPCTest.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaXMLRPCTest.java b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaXMLRPCTest.java
index 5af7eae3f..9932cc361 100644
--- a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaXMLRPCTest.java
+++ b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaXMLRPCTest.java
@@ -18,8 +18,6 @@ import org.eclipse.mylyn.bugzilla.tests.BugzillaTestConstants;
import org.eclipse.mylyn.commons.net.AuthenticationType;
import org.eclipse.mylyn.commons.net.WebLocation;
import org.eclipse.mylyn.internal.bugzilla.core.service.BugzillaXmlRpcClient;
-import org.junit.Before;
-import org.junit.Test;
public class BugzillaXMLRPCTest {
private BugzillaXmlRpcClient bugzillaClient;
@@ -28,7 +26,6 @@ public class BugzillaXMLRPCTest {
// private static String TEST_REPO = "http://.../Bugzilla36";
- @Before
public void setUp() throws Exception {
// WebLocation webLocation = new WebLocation(TEST_REPO + "/xmlrpc.cgi");
// webLocation.setCredentials(AuthenticationType.REPOSITORY, "user", "password");
@@ -39,7 +36,6 @@ public class BugzillaXMLRPCTest {
bugzillaClient.setContentTypeCheckingEnabled(true);
}
- @Test
@SuppressWarnings("unused")
public void testxmlrpc() throws Exception {
int uID = bugzillaClient.login();

Back to the top