GEODE-1243: Missed fixing one test for parameterization

Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/f05e87d2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/f05e87d2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/f05e87d2

Branch: refs/heads/feature/GEODE-835
Commit: f05e87d2710cf26bb546109962a99c849cef973e
Parents: 2dd3d90
Author: Jens Deppe <jde...@pivotal.io>
Authored: Fri May 20 08:11:09 2016 -0700
Committer: Jens Deppe <jde...@pivotal.io>
Committed: Fri May 20 08:11:09 2016 -0700

----------------------------------------------------------------------
 .../distributed/LocatorLauncherAssemblyIntegrationTest.java     | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/f05e87d2/geode-assembly/src/test/java/com/gemstone/gemfire/distributed/LocatorLauncherAssemblyIntegrationTest.java
----------------------------------------------------------------------
diff --git 
a/geode-assembly/src/test/java/com/gemstone/gemfire/distributed/LocatorLauncherAssemblyIntegrationTest.java
 
b/geode-assembly/src/test/java/com/gemstone/gemfire/distributed/LocatorLauncherAssemblyIntegrationTest.java
index 332cbf4..84d4aba 100644
--- 
a/geode-assembly/src/test/java/com/gemstone/gemfire/distributed/LocatorLauncherAssemblyIntegrationTest.java
+++ 
b/geode-assembly/src/test/java/com/gemstone/gemfire/distributed/LocatorLauncherAssemblyIntegrationTest.java
@@ -27,10 +27,13 @@ import com.gemstone.gemfire.internal.process.ProcessUtils;
 import com.gemstone.gemfire.management.ManagementService;
 import com.gemstone.gemfire.management.ManagerMXBean;
 import com.gemstone.gemfire.test.junit.categories.IntegrationTest;
+import 
com.gemstone.gemfire.test.junit.runners.CategoryWithParameterizedRunnerFactory;
 import org.junit.After;
 import org.junit.Before;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
 
 import java.io.File;
 
@@ -40,6 +43,8 @@ import static org.junit.Assert.*;
  * These tests are part of assembly as they require the REST war file to be 
present.
  */
 @Category(IntegrationTest.class)
+@RunWith(Parameterized.class)
+@Parameterized.UseParametersRunnerFactory(CategoryWithParameterizedRunnerFactory.class)
 public class LocatorLauncherAssemblyIntegrationTest extends 
AbstractLocatorLauncherIntegrationTestCase {
 
   @Before

Reply via email to