Adapt TransportPCE code to Sulfur
[transportpce.git] / pce / src / test / java / org / opendaylight / transportpce / pce / SortPortsByNameTest.java
1 /*
2  * Copyright © 2020 Orange Labs, 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.pce;
9
10 import org.junit.Assert;
11 import org.junit.Test;
12
13 public class SortPortsByNameTest {
14
15     private SortPortsByName sortPortsByName = new SortPortsByName();
16
17     @Test
18     public void compareTest() {
19         Assert.assertEquals(12, sortPortsByName.compare("value22", "valu10"));
20     }
21
22     @Test
23     public void compareWithoutNUM() {
24         Assert.assertEquals(0, sortPortsByName.compare("value", "value"));
25     }
26
27     @Test
28     public void compareLessThan() {
29         Assert.assertEquals(-11, sortPortsByName.compare("value1", "value12"));
30     }
31
32
33 }