Madan Jampani

Ignore Atomix tests until we can fix local transport

Change-Id: I2920604d231fd77712bd9d5efea865e6325d886e
......@@ -49,6 +49,7 @@ import static org.junit.Assert.assertTrue;
/**
* Tests the {@link AsyncConsistentSetMultimap}.
*/
@Ignore
public class AsyncConsistentSetMultimapTest extends AtomixTestBase {
private final File testDir = Files.createTempDir();
private final String keyOne = "hello";
......@@ -75,7 +76,6 @@ public class AsyncConsistentSetMultimapTest extends AtomixTestBase {
* Test that size behaves correctly (This includes testing of the empty
* check).
*/
@Ignore
@Test
public void testSize() throws Throwable {
clearTests();
......@@ -127,7 +127,6 @@ public class AsyncConsistentSetMultimapTest extends AtomixTestBase {
/**
* Contains tests for value, key and entry.
*/
@Ignore
@Test
public void containsTest() throws Throwable {
clearTests();
......@@ -189,7 +188,6 @@ public class AsyncConsistentSetMultimapTest extends AtomixTestBase {
* Contains tests for put, putAll, remove, removeAll and replace.
* @throws Exception
*/
@Ignore
@Test
public void addAndRemoveTest() throws Exception {
clearTests();
......@@ -326,7 +324,6 @@ public class AsyncConsistentSetMultimapTest extends AtomixTestBase {
* as a trivial test of the asMap functionality (throws error).
* @throws Exception
*/
@Ignore
@Test
public void testAccessors() throws Exception {
clearTests();
......
......@@ -27,6 +27,7 @@ import java.util.concurrent.BlockingQueue;
import java.util.concurrent.CompletionException;
import java.util.stream.Collectors;
import org.junit.Ignore;
import org.junit.Test;
import org.onlab.util.Tools;
import org.onosproject.store.primitives.MapUpdate;
......@@ -42,6 +43,7 @@ import com.google.common.collect.Sets;
/**
* Unit tests for {@link AtomixConsistentMap}.
*/
@Ignore
public class AtomixConsistentMapTest extends AtomixTestBase {
@Override
......
......@@ -20,6 +20,7 @@ import java.util.Queue;
import java.util.concurrent.CompletableFuture;
import java.util.function.Consumer;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.*;
......@@ -35,6 +36,7 @@ import io.atomix.resource.ResourceType;
/**
* Unit tests for {@link AtomixLeaderElector}.
*/
@Ignore
public class AtomixLeaderElectorTest extends AtomixTestBase {
NodeId node1 = new NodeId("node1");
......
......@@ -17,6 +17,7 @@ package org.onosproject.store.primitives.resources.impl;
import static org.junit.Assert.*;
import org.junit.Ignore;
import org.junit.Test;
import io.atomix.Atomix;
......@@ -26,6 +27,7 @@ import io.atomix.variables.DistributedLong;
/**
* Unit tests for {@link AtomixCounter}.
*/
@Ignore
public class AtomixLongTest extends AtomixTestBase {
@Override
......