Move netconf.api.monitoring
[netconf.git] / protocol / netconf-server / src / test / java / org / opendaylight / netconf / server / api / monitoring / SessionEventTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. 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.netconf.server.api.monitoring;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.junit.Test;
13 import org.junit.runner.RunWith;
14 import org.mockito.Mock;
15 import org.mockito.junit.MockitoJUnitRunner;
16
17 @RunWith(MockitoJUnitRunner.StrictStubs.class)
18 public class SessionEventTest {
19     @Mock
20     private NetconfManagementSession session;
21
22     @Test
23     public void test() {
24         assertEquals(SessionEvent.Type.IN_RPC_FAIL, SessionEvent.inRpcFail(session).getType());
25         assertEquals(SessionEvent.Type.IN_RPC_SUCCESS, SessionEvent.inRpcSuccess(session).getType());
26         assertEquals(SessionEvent.Type.NOTIFICATION, SessionEvent.notification(session).getType());
27         assertEquals(SessionEvent.Type.OUT_RPC_ERROR, SessionEvent.outRpcError(session).getType());
28     }
29 }