blob: 6efbae487a5e9f697f83bfc46d04b081a2e2050d [file] [log] [blame]
sangyun-hanf98df542016-03-24 20:28:03 +09001package org.onosproject.store.cluster.impl;
2
3import org.junit.After;
4import org.junit.Before;
5
6import static org.junit.Assert.*;
7
8/**
9 * Unit test for DistributedClusterStore.
10 */
11public class DistributedClusterStoreTest {
12 DistributedClusterStore distributedClusterStore;
13
14 @Before
15 public void setUp() throws Exception {
16 distributedClusterStore = new DistributedClusterStore();
17 distributedClusterStore.activate();
18 }
19
20 @After
21 public void tearDown() throws Exception {
22 distributedClusterStore.deactivate();
23 }
24}