Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 60245 Details for
Bug 175211
Support Trac 0.11
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
enables Trac 0.11 tests
trac011-tests.patch (text/plain), 5.24 KB, created by
Steffen Pingel
on 2007-03-05 02:41:14 EST
(
hide
)
Description:
enables Trac 0.11 tests
Filename:
MIME Type:
Creator:
Steffen Pingel
Created:
2007-03-05 02:41:14 EST
Size:
5.24 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.mylar.trac.tests >Index: src/org/eclipse/mylar/trac/tests/TracTaskDataHandlerTest.java >=================================================================== >RCS file: /cvsroot/technology/org.eclipse.mylar/org.eclipse.mylar.trac.tests/src/org/eclipse/mylar/trac/tests/TracTaskDataHandlerTest.java,v >retrieving revision 1.2 >diff -u -r1.2 TracTaskDataHandlerTest.java >--- src/org/eclipse/mylar/trac/tests/TracTaskDataHandlerTest.java 23 Feb 2007 02:38:21 -0000 1.2 >+++ src/org/eclipse/mylar/trac/tests/TracTaskDataHandlerTest.java 5 Mar 2007 07:34:38 -0000 >@@ -97,10 +97,10 @@ > getChangedSinceLastSync(); > } > >-// public void testGetChangedSinceLastSyncXmlRpc011() throws Exception { >-// init(Constants.TEST_TRAC_011_URL, Version.XML_RPC); >-// getChangedSinceLastSync(); >-// } >+ public void testGetChangedSinceLastSyncXmlRpc011() throws Exception { >+ init(Constants.TEST_TRAC_011_URL, Version.XML_RPC); >+ getChangedSinceLastSync(); >+ } > > private void getChangedSinceLastSync() throws Exception { > TracTask task = (TracTask) connector.createTaskFromExistingKey(repository, data.offlineHandlerTicketId + ""); >Index: src/org/eclipse/mylar/trac/tests/AbstractTracClientSearchTest.java >=================================================================== >RCS file: /cvsroot/technology/org.eclipse.mylar/org.eclipse.mylar.trac.tests/src/org/eclipse/mylar/trac/tests/AbstractTracClientSearchTest.java,v >retrieving revision 1.13 >diff -u -r1.13 AbstractTracClientSearchTest.java >--- src/org/eclipse/mylar/trac/tests/AbstractTracClientSearchTest.java 23 Feb 2007 02:38:21 -0000 1.13 >+++ src/org/eclipse/mylar/trac/tests/AbstractTracClientSearchTest.java 5 Mar 2007 07:34:38 -0000 >@@ -127,10 +127,10 @@ > searchAll(); > } > >-// public void testSearchAll011() throws Exception { >-// connect011(); >-// searchAll(); >-// } >+ public void testSearchAll011() throws Exception { >+ connect011(); >+ searchAll(); >+ } > > private void searchAll() throws Exception { > TracSearch search = new TracSearch(); >@@ -144,10 +144,10 @@ > searchEmpty(); > } > >-// public void testSearchEmpty011() throws Exception { >-// connect011(); >-// searchEmpty(); >-// } >+ public void testSearchEmpty011() throws Exception { >+ connect011(); >+ searchEmpty(); >+ } > > private void searchEmpty() throws Exception { > TracSearch search = new TracSearch(); >@@ -162,10 +162,10 @@ > searchMilestone1(); > } > >-// public void testSearchMilestone1011() throws Exception { >-// connect011(); >-// searchMilestone1(); >-// } >+ public void testSearchMilestone1011() throws Exception { >+ connect011(); >+ searchMilestone1(); >+ } > > private void searchMilestone1() throws Exception { > TracSearch search = new TracSearch(); >@@ -181,10 +181,10 @@ > searchMilestone2(); > } > >-// public void testSearchMilestone2011() throws Exception { >-// connect011(); >-// searchMilestone2(); >-// } >+ public void testSearchMilestone2011() throws Exception { >+ connect011(); >+ searchMilestone2(); >+ } > > private void searchMilestone2() throws Exception { > TracSearch search = new TracSearch(); >@@ -204,10 +204,10 @@ > searchExactMatch(); > } > >-// public void testSearchExactMatch011() throws Exception { >-// connect011(); >-// searchExactMatch(); >-// } >+ public void testSearchExactMatch011() throws Exception { >+ connect011(); >+ searchExactMatch(); >+ } > > private void searchExactMatch() throws Exception { > TracSearch search = new TracSearch(); >Index: src/org/eclipse/mylar/trac/tests/TracRepositoryConnectorTest.java >=================================================================== >RCS file: /cvsroot/technology/org.eclipse.mylar/org.eclipse.mylar.trac.tests/src/org/eclipse/mylar/trac/tests/TracRepositoryConnectorTest.java,v >retrieving revision 1.40 >diff -u -r1.40 TracRepositoryConnectorTest.java >--- src/org/eclipse/mylar/trac/tests/TracRepositoryConnectorTest.java 27 Feb 2007 17:56:24 -0000 1.40 >+++ src/org/eclipse/mylar/trac/tests/TracRepositoryConnectorTest.java 5 Mar 2007 07:34:38 -0000 >@@ -179,9 +179,9 @@ > assertEquals(Version.XML_RPC, client.getVersion()); > } > >-// public void testPerformQueryXmlRpc011() { >-// performQuery(Constants.TEST_TRAC_011_URL, Version.XML_RPC); >-// } >+ public void testPerformQueryXmlRpc011() { >+ performQuery(Constants.TEST_TRAC_011_URL, Version.XML_RPC); >+ } > > public void testPerformQueryXmlRpc010() { > performQuery(Constants.TEST_TRAC_010_URL, Version.XML_RPC); >Index: src/org/eclipse/mylar/trac/tests/TracXmlRpcClientSearchTest.java >=================================================================== >RCS file: /cvsroot/technology/org.eclipse.mylar/org.eclipse.mylar.trac.tests/src/org/eclipse/mylar/trac/tests/TracXmlRpcClientSearchTest.java,v >retrieving revision 1.6 >diff -u -r1.6 TracXmlRpcClientSearchTest.java >--- src/org/eclipse/mylar/trac/tests/TracXmlRpcClientSearchTest.java 23 Feb 2007 02:38:21 -0000 1.6 >+++ src/org/eclipse/mylar/trac/tests/TracXmlRpcClientSearchTest.java 5 Mar 2007 07:34:38 -0000 >@@ -33,10 +33,10 @@ > searchValidateTicket(); > } > >-// public void testSearchValidateTicket011() throws Exception { >-// connect011(); >-// searchValidateTicket(); >-// } >+ public void testSearchValidateTicket011() throws Exception { >+ connect011(); >+ searchValidateTicket(); >+ } > > public void searchValidateTicket() throws Exception { > TracSearch search = new TracSearch();
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 175211
: 60245 |
60246