blob: 41fefd65361c7c3195dec58cebe59ed65a37ed0d [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.ui.table.CellFormatter;
21
22import static org.junit.Assert.assertEquals;
23
24/**
25 * Unit tests for {@link AbstractCellFormatter}.
26 */
27public class AbstractCellFormatterTest {
28
29 private static final String MOCK_OUTPUT = "Mock!!";
30
31 private static class Concrete extends AbstractCellFormatter {
32 @Override
33 protected String nonNullFormat(Object value) {
34 return MOCK_OUTPUT;
35 }
36 }
37
38 private CellFormatter frm = new Concrete();
39
40 @Test
41 public void nullInput() {
42 assertEquals("wrong result", "", frm.format(null));
43 }
44
45 // mock output, but check that our method was invoked...
46 @Test
47 public void nonNullInput() {
48 assertEquals("what?", MOCK_OUTPUT, frm.format(1));
49 }
50
51}