blob: a1ffa7830888913dac64b464bfc7cc2ae1f707d0 [file] [log] [blame]
samanwita pal18696f62015-07-17 13:15:43 -07001/*
2 * Copyright 2014 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 */
samanwita palf66ed8a2015-07-21 15:45:33 -070016package org.onosproject.dhcpserver.impl;
samanwita pal18696f62015-07-17 13:15:43 -070017
18import org.junit.After;
19import org.junit.Before;
20import org.junit.Ignore;
21import org.junit.Test;
22
23/**
24 * Set of tests of the ONOS application component.
25 */
26
27// TODO Add tests later.
28@Ignore
samanwita palf66ed8a2015-07-21 15:45:33 -070029public class DHCPManagerTest {
samanwita pal18696f62015-07-17 13:15:43 -070030
samanwita palf66ed8a2015-07-21 15:45:33 -070031 private DHCPManager component;
samanwita pal18696f62015-07-17 13:15:43 -070032
33 @Before
34 public void setUp() {
samanwita palf66ed8a2015-07-21 15:45:33 -070035 component = new DHCPManager();
samanwita pal18696f62015-07-17 13:15:43 -070036 component.activate();
37
38 }
39
40 @After
41 public void tearDown() {
42 component.deactivate();
43 }
44
45 @Test
46 public void basics() {
47
48 }
49
50}