Follow JUnit 4 style instead of JUnit 3 style
Change-Id: I594e458c4c609dab06179a04462284f2b3565674
diff --git a/core/store/dist/src/test/java/org/onosproject/store/host/impl/DistributedHostStoreTest.java b/core/store/dist/src/test/java/org/onosproject/store/host/impl/DistributedHostStoreTest.java
index 3f93488..9f7338d 100644
--- a/core/store/dist/src/test/java/org/onosproject/store/host/impl/DistributedHostStoreTest.java
+++ b/core/store/dist/src/test/java/org/onosproject/store/host/impl/DistributedHostStoreTest.java
@@ -15,7 +15,6 @@
*/
package org.onosproject.store.host.impl;
-import junit.framework.TestCase;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
@@ -32,10 +31,13 @@
import java.util.HashSet;
import java.util.Set;
+import static junit.framework.TestCase.assertTrue;
+import static org.junit.Assert.assertFalse;
+
/**
* Tests for the ECHostStore.
*/
-public class DistributedHostStoreTest extends TestCase {
+public class DistributedHostStoreTest {
private DistributedHostStore ecXHostStore;
@@ -80,4 +82,4 @@
assertTrue(host.ipAddresses().contains(IP2));
}
-}
\ No newline at end of file
+}