blob: 39f60df3b5a2a5ed6985d8822270c1aad8ca8fd3 [file] [log] [blame]
Simon Hunt9ffbd8d2015-05-06 12:02:32 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Simon Hunt9ffbd8d2015-05-06 12:02:32 -07003 *
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.core.ApplicationId;
21import org.onosproject.ui.table.CellFormatter;
22
23import static org.junit.Assert.assertEquals;
24
25/**
26 * Unit tests for {@link AppIdFormatter}.
27 */
28public class AppIdFormatterTest {
29
30 private static final ApplicationId APP_ID = new ApplicationId() {
31 @Override
32 public short id() {
33 return 25;
34 }
35
36 @Override
37 public String name() {
38 return "some app";
39 }
40 };
41
42 private CellFormatter fmt = AppIdFormatter.INSTANCE;
43
44 @Test
45 public void basic() {
46 assertEquals("wrong format", "25 : some app", fmt.format(APP_ID));
47 }
48
49}