[jbosstools-commits] JBoss Tools SVN: r30468 - workspace/adietish/org.jboss.ide.eclipse.as7.deployment.tests/src/org/jboss/ide/eclipse/as7/deployment/tests.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Mon Apr 11 07:08:56 EDT 2011


Author: adietish
Date: 2011-04-11 07:08:56 -0400 (Mon, 11 Apr 2011)
New Revision: 30468

Modified:
   workspace/adietish/org.jboss.ide.eclipse.as7.deployment.tests/src/org/jboss/ide/eclipse/as7/deployment/tests/DeploymentBuilderIntegrationTest.java
Log:
added jboss-thread source jar

Modified: workspace/adietish/org.jboss.ide.eclipse.as7.deployment.tests/src/org/jboss/ide/eclipse/as7/deployment/tests/DeploymentBuilderIntegrationTest.java
===================================================================
--- workspace/adietish/org.jboss.ide.eclipse.as7.deployment.tests/src/org/jboss/ide/eclipse/as7/deployment/tests/DeploymentBuilderIntegrationTest.java	2011-04-11 11:04:25 UTC (rev 30467)
+++ workspace/adietish/org.jboss.ide.eclipse.as7.deployment.tests/src/org/jboss/ide/eclipse/as7/deployment/tests/DeploymentBuilderIntegrationTest.java	2011-04-11 11:08:56 UTC (rev 30468)
@@ -12,7 +12,7 @@
 
 import static junit.framework.Assert.assertEquals;
 import static junit.framework.Assert.fail;
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertNotNull;
 
 import java.io.File;
 import java.io.IOException;
@@ -26,9 +26,9 @@
 
 import org.eclipse.core.runtime.FileLocator;
 import org.eclipse.core.runtime.Platform;
+import org.jboss.ide.eclipse.as7.deployment.Deployable;
 import org.jboss.ide.eclipse.as7.deployment.DeploymentBuilder;
-import org.jboss.ide.eclipse.as7.deployment.DeploymentBuilder.Deployable;
-import org.jboss.ide.eclipse.as7.deployment.DeploymentBuilderException;
+import org.jboss.ide.eclipse.as7.deployment.DeploymentException;
 import org.junit.Before;
 import org.junit.Test;
 import org.osgi.framework.Bundle;
@@ -61,13 +61,13 @@
 	}
 
 	@Test
-	public void canDeploy() throws DeploymentBuilderException, URISyntaxException, IOException {
+	public void canDeploy() throws DeploymentException, URISyntaxException, IOException {
 		File file = getWarFile("minimalistic.war");
 		new DeploymentBuilder(HOST, PORT).add(file).deploy();
 	}
 
 	@Test
-	public void getMatchingDeployables() throws DeploymentBuilderException, URISyntaxException, IOException {
+	public void returnsDeployables() throws DeploymentException, URISyntaxException, IOException {
 		String warName = "minimalistic.war";
 		File file = getWarFile(warName );
 		List<Deployable> deployables = new DeploymentBuilder(HOST, PORT).add(file).deploy();
@@ -76,7 +76,7 @@
 	}
 
 	@Test
-	public void canGetDeploymentStatus() throws DeploymentBuilderException, URISyntaxException, IOException {
+	public void canGetDeploymentStatus() throws DeploymentException, URISyntaxException, IOException {
 		File file = getWarFile("minimalistic.war");
 		List<Deployable> deployables = new DeploymentBuilder(HOST, PORT).add(file).deploy();
 		Deployable deployable = deployables.get(0);



More information about the jbosstools-commits mailing list