blob: 5f0400cd15edacd2499bbbfe10e0698426c6ddeb [file] [log] [blame]
Ray Milkey85267002016-11-16 11:06:35 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Ray Milkey85267002016-11-16 11:06:35 -08003 *
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 */
Ray Milkeye022ef62016-06-08 15:17:19 -070016package org.onosproject.net.driver;
17
Ray Milkeye022ef62016-06-08 15:17:19 -070018import org.junit.Test;
Thomas Vachuskae7ea6882016-07-22 10:22:46 -070019
Ray Milkeye022ef62016-06-08 15:17:19 -070020/**
21 * Base test class for driver loading.
22 */
23public abstract class AbstractDriverLoaderTest {
24
Thomas Vachuska43de6ee2017-03-15 15:45:23 -070025 protected AbstractIndependentDriverLoader loader;
Ray Milkeye022ef62016-06-08 15:17:19 -070026
27 @Test
28 public void testLoader() {
29 loader.driverAdminService = new DriverAdminServiceAdapter();
30 loader.activate();
31 loader.deactivate();
32 }
33}