Migrate pce module to JUnit5
[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 static org.junit.jupiter.api.Assertions.assertEquals;
11
12 import org.junit.jupiter.api.Test;
13
14 public class SortPortsByNameTest {
15
16     private SortPortsByName sortPortsByName = new SortPortsByName();
17
18     @Test
19     void compareTest() {
20         assertEquals(12, sortPortsByName.compare("value22", "valu10"));
21     }
22
23     @Test
24     void compareWithoutNUM() {
25         assertEquals(0, sortPortsByName.compare("value", "value"));
26     }
27
28     @Test
29     void compareLessThan() {
30         assertEquals(-11, sortPortsByName.compare("value1", "value12"));
31     }
32 }