Added support for VPN Intent
[vpnservice.git] / vpnintent / impl / src / test / java / org / opendaylight / vpnservice / impl / VpnintentProviderTest.java
1 /*
2  * Copyright (c) 2016 Inocybe Technologies and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.vpnservice.impl;
9
10 import static org.mockito.Mockito.mock;
11
12 import org.junit.Ignore;
13 import org.junit.Test;
14 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker;
15
16 public class VpnintentProviderTest {
17     @Ignore
18     @Test
19     public void testOnSessionInitiated() {
20         VpnintentProvider provider = new VpnintentProvider();
21
22         // ensure no exceptions
23         // currently this method is empty
24         provider.onSessionInitiated(mock(BindingAwareBroker.ProviderContext.class));
25     }
26
27     @Ignore
28     @Test
29     public void testClose() throws Exception {
30         VpnintentProvider provider = new VpnintentProvider();
31
32         // ensure no exceptions
33         // currently this method is empty
34         provider.close();
35     }
36 }