Sho SHIMIZU
Committed by Gerrit Code Review

Follow JUnit 4 style instead of JUnit 3 style

Change-Id: I594e458c4c609dab06179a04462284f2b3565674
......@@ -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 org.onosproject.store.service.TestStorageService;
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 @@ public class DistributedHostStoreTest extends TestCase {
assertTrue(host.ipAddresses().contains(IP2));
}
}
\ No newline at end of file
}
......