Repository: ignite
Updated Branches:
  refs/heads/master 87510597f -> f0544d46a


http://git-wip-us.apache.org/repos/asf/ignite/blob/f0544d46/modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryMultiThreadedTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryMultiThreadedTest.java
 
b/modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryMultiThreadedTest.java
index 99dd5aa..1082d43 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryMultiThreadedTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryMultiThreadedTest.java
@@ -58,6 +58,9 @@ import 
org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder;
 import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder;
 import org.apache.ignite.testframework.GridTestUtils;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
 
 import static org.apache.ignite.events.EventType.EVT_JOB_MAPPED;
 import static org.apache.ignite.events.EventType.EVT_NODE_FAILED;
@@ -68,6 +71,7 @@ import static 
org.apache.ignite.events.EventType.EVT_TASK_FINISHED;
 /**
  * Test for {@link TcpDiscoverySpi}.
  */
+@RunWith(JUnit4.class)
 public class TcpDiscoveryMultiThreadedTest extends GridCommonAbstractTest {
     /** */
     private static final int GRID_CNT = 5;
@@ -172,6 +176,7 @@ public class TcpDiscoveryMultiThreadedTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If any error occurs.
      */
+    @Test
     public void testMultiThreadedClientsRestart() throws Exception {
         final AtomicBoolean done = new AtomicBoolean();
 
@@ -220,6 +225,7 @@ public class TcpDiscoveryMultiThreadedTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If any error occurs.
      */
+    @Test
     public void testMultiThreadedClientsServersRestart() throws Throwable {
         fail("https://issues.apache.org/jira/browse/IGNITE-1123";);
 
@@ -229,6 +235,7 @@ public class TcpDiscoveryMultiThreadedTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If any error occurs.
      */
+    @Test
     public void testMultiThreadedServersRestart() throws Throwable {
         fail("https://issues.apache.org/jira/browse/IGNITE-1123";);
 
@@ -426,6 +433,7 @@ public class TcpDiscoveryMultiThreadedTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If any error occurs.
      */
+    @Test
     public void testTopologyVersion() throws Exception {
         clientFlagGlobal = false;
 
@@ -450,6 +458,7 @@ public class TcpDiscoveryMultiThreadedTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If any error occurs.
      */
+    @Test
     public void testMultipleStartOnCoordinatorStop() throws Exception{
         for (int k = 0; k < 3; k++) {
             log.info("Iteration: " + k);
@@ -499,6 +508,7 @@ public class TcpDiscoveryMultiThreadedTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testCustomEventOnJoinCoordinatorStop() throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-10198";);
 
@@ -597,6 +607,7 @@ public class TcpDiscoveryMultiThreadedTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testClientContinuousQueryCoordinatorStop() throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-10198";);
 
@@ -668,6 +679,7 @@ public class TcpDiscoveryMultiThreadedTest extends 
GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @Test
     public void testCustomEventNodeRestart() throws Exception {
         fail("https://issues.apache.org/jira/browse/IGNITE-10249";);
 

Reply via email to