[jboss-svn-commits] JBL Code SVN: r8738 - labs/jbossesb/trunk/product/core/rosetta/tests/src/org/jboss/internal/soa/esb/couriers/tests
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Sat Jan 6 17:56:34 EST 2007
Author: mark.little at jboss.com
Date: 2007-01-06 17:56:32 -0500 (Sat, 06 Jan 2007)
New Revision: 8738
Modified:
labs/jbossesb/trunk/product/core/rosetta/tests/src/org/jboss/internal/soa/esb/couriers/tests/CourierIntegrationTest.java
Log:
Modified: labs/jbossesb/trunk/product/core/rosetta/tests/src/org/jboss/internal/soa/esb/couriers/tests/CourierIntegrationTest.java
===================================================================
--- labs/jbossesb/trunk/product/core/rosetta/tests/src/org/jboss/internal/soa/esb/couriers/tests/CourierIntegrationTest.java 2007-01-06 22:50:42 UTC (rev 8737)
+++ labs/jbossesb/trunk/product/core/rosetta/tests/src/org/jboss/internal/soa/esb/couriers/tests/CourierIntegrationTest.java 2007-01-06 22:56:32 UTC (rev 8738)
@@ -49,19 +49,13 @@
*/
public class CourierIntegrationTest extends BaseTest
{
- public static junit.framework.Test suite()
- {
- return new JUnit4TestAdapter(CourierIntegrationTest.class);
- }
-
- @Test
+
public void testFileDeliver () throws Exception
{
final File file = new File(System.getProperty("java.io.tmpdir")) ;
deliver(file.toURL().toExternalForm());
}
- @Test
public void testFTPDeliver () throws Exception
{
if (getFtpPwd() != "")
@@ -70,16 +64,16 @@
deliver("ftp://"+getFtpUser()+"@"+getFtpHostname()+"/"+getFtpDir());
}
- @Test
- public void pickupFile () throws Exception
+ public void testPickupFile () throws Exception
{
final File file = new File(System.getProperty("java.io.tmpdir")) ;
pickup(file.toURL().toExternalForm());
}
- @Test
- public void pickupFTP () throws Exception
+ public void testPickupFTP () throws Exception
{
+ fail();
+
if (getFtpPwd() != "")
pickup("ftp://"+getFtpUser()+":"+getFtpPwd()+"@"+getFtpHostname()+"/"+getFtpDir());
else
More information about the jboss-svn-commits
mailing list