blob: 47d21cb38c92b20cd75e470b1cc465d9a06525df [file] [log] [blame]
Brian O'Connor7cbbbb72016-04-09 02:13:23 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
sangyun-hanf98df542016-03-24 20:28:03 +090016package org.onosproject.store.cluster.impl;
17
18import org.junit.After;
19import org.junit.Before;
20
21import static org.junit.Assert.*;
22
23/**
24 * Unit test for DistributedClusterStore.
25 */
26public class DistributedClusterStoreTest {
27 DistributedClusterStore distributedClusterStore;
28
29 @Before
30 public void setUp() throws Exception {
31 distributedClusterStore = new DistributedClusterStore();
Thomas Vachuska1ca7e9f2016-08-05 10:21:41 -070032 distributedClusterStore.activate();
sangyun-hanf98df542016-03-24 20:28:03 +090033 }
34
35 @After
36 public void tearDown() throws Exception {
37 distributedClusterStore.deactivate();
38 }
39}