[jbosstools-commits] JBoss Tools SVN: r39827 - trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/webservice.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Mon Mar 26 10:17:29 EDT 2012


Author: jjankovi
Date: 2012-03-26 10:17:29 -0400 (Mon, 26 Mar 2012)
New Revision: 39827

Modified:
   trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/webservice/TopDownWSTest.java
Log:
small fix

Modified: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/webservice/TopDownWSTest.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/webservice/TopDownWSTest.java	2012-03-26 14:15:55 UTC (rev 39826)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/webservice/TopDownWSTest.java	2012-03-26 14:17:29 UTC (rev 39827)
@@ -11,7 +11,6 @@
 package org.jboss.tools.ws.ui.bot.test.webservice;
 
 import org.jboss.tools.ws.ui.bot.test.uiutils.wizards.WsWizardBase.Slider_Level;
-import org.junit.Ignore;
 import org.junit.Test;
 
 /**
@@ -56,12 +55,6 @@
 		 */
 	
 	@Test
-	public void testDeployService() {
-		setLevel(Slider_Level.DEPLOY);
-		topDownWS();
-	}
-	
-	@Test
 	public void testDevelopService() {
 		setLevel(Slider_Level.DEVELOP);
 		topDownWS();
@@ -74,6 +67,12 @@
 	}
 	
 	@Test
+	public void testDeployService() {
+		setLevel(Slider_Level.DEPLOY);
+		topDownWS();
+	}
+	
+	@Test
 	public void testInstallService() {
 		setLevel(Slider_Level.INSTALL);
 		topDownWS();
@@ -90,7 +89,7 @@
 		setLevel(Slider_Level.TEST);
 		topDownWS();
 	}
-	@Ignore
+	
 	@Test
 	public void testDefaultPkg() {
 		setLevel(Slider_Level.ASSEMBLE);
@@ -104,11 +103,11 @@
 	protected void topDownWS(String pkg) {
 		topDownWS(TopDownWSTest.class.getResourceAsStream("/resources/jbossws/ClassB.wsdl"), pkg);
 		switch (getLevel()) {
-			case DEVELOP:
-			case ASSEMBLE:
-			case DEPLOY:
-				deploymentHelper.runProject(getEarProjectName());
-				break;
+		case DEVELOP:
+		case ASSEMBLE:
+//		case DEPLOY:
+			deploymentHelper.runProject(getEarProjectName());
+			break;
 		}
 		deploymentHelper.assertServiceDeployed(deploymentHelper.getWSDLUrl(getWsProjectName(), getWsName()), 10000);
 		servers.removeAllProjectsFromServer(configuredState.getServer().name);



More information about the jbosstools-commits mailing list