Integrate netconf-mapping-api into netconf-server
[netconf.git] / protocol / netconf-api / src / test / java / org / opendaylight / netconf / 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
9 package org.opendaylight.netconf.api.monitoring;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.mockito.Mockito.mock;
13
14 import org.junit.Test;
15
16 public class SessionEventTest {
17
18     @Test
19     public void test() {
20         final NetconfManagementSession session = mock(NetconfManagementSession.class);
21
22         assertEquals(SessionEvent.Type.IN_RPC_FAIL, SessionEvent.inRpcFail(session).getType());
23         assertEquals(SessionEvent.Type.IN_RPC_SUCCESS, SessionEvent.inRpcSuccess(session).getType());
24         assertEquals(SessionEvent.Type.NOTIFICATION, SessionEvent.notification(session).getType());
25         assertEquals(SessionEvent.Type.OUT_RPC_ERROR, SessionEvent.outRpcError(session).getType());
26     }
27 }