blob: f7ad2751d5fa0c7e086435e94211d015d423e237 [file] [log] [blame]
Simon Hunt9ffbd8d2015-05-06 12:02:32 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Simon Hunt9ffbd8d2015-05-06 12:02:32 -070015 */
16
17package org.onosproject.ui.table.cell;
18
19import org.junit.Test;
20import org.onosproject.net.ConnectPoint;
21import org.onosproject.net.DeviceId;
22import org.onosproject.net.PortNumber;
23import org.onosproject.ui.table.CellFormatter;
24
25import static org.junit.Assert.assertEquals;
26
27/**
28 * Unit tests for {@link ConnectPointFormatter}.
29 */
30public class ConnectPointFormatterTest {
31
32 private static final DeviceId DEVID = DeviceId.deviceId("foobar");
33 private static final PortNumber PORT = PortNumber.portNumber(42);
34
35 private static final ConnectPoint CP = new ConnectPoint(DEVID, PORT);
36
37 private CellFormatter fmt = ConnectPointFormatter.INSTANCE;
38
39 @Test
40 public void basic() {
41 assertEquals("wrong format", "foobar/42", fmt.format(CP));
42 }
43
44}