Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac')
-rw-r--r--org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java b/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java
index 7002af240..34820136a 100644
--- a/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java
+++ b/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java
@@ -49,6 +49,14 @@ public class TracTestCleanupUtil extends TestCase {
deleteOldTickets();
}
+ public void testCleanup010FormAuth() throws Exception {
+ TracFixture fixture = TracFixture.TRAC_0_10_XML_RPC_FORM_AUTH.activate();
+ System.err.println("Connected to " + fixture.getRepositoryUrl());
+ client = fixture.connect(PrivilegeLevel.ADMIN);
+ deleteOldAttachments();
+ deleteOldTickets();
+ }
+
public void testCleanup011() throws Exception {
TracFixture fixture = TracFixture.TRAC_0_11_XML_RPC.activate();
System.err.println("Connected to " + fixture.getRepositoryUrl());

Back to the top