Implement an autonomous service rerouting
[transportpce.git] / servicehandler / src / test / java / org / opendaylight / transportpce / servicehandler / ServiceEndpointTypeTest.java
1 /*
2  * Copyright © 2018 Orange, 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.transportpce.servicehandler;
9
10 import org.junit.Assert;
11 import org.junit.Test;
12
13 public class ServiceEndpointTypeTest {
14
15     @Test
16     public void testgetIntValue() {
17         Assert.assertEquals(1, ServiceEndpointType.SERVICEAEND.getIntValue());
18         Assert.assertEquals(2, ServiceEndpointType.SERVICEZEND.getIntValue());
19     }
20
21     @Test
22     public void testForValue() {
23         Assert.assertEquals(ServiceEndpointType.SERVICEAEND, ServiceEndpointType.forValue(1));
24         Assert.assertEquals(ServiceEndpointType.SERVICEZEND, ServiceEndpointType.forValue(2));
25     }
26
27 }