blob: 1f47a09c7693dbd9b6d70804b9ab925d9c89fb33 [file] [log] [blame]
Simon Hunt3a0598f2015-08-04 19:59:04 -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.
15 *
16 */
17
18package org.onosproject.ui.topo;
19
20import org.junit.Test;
21
22import static org.junit.Assert.assertEquals;
23
24/**
25 * Unit tests for {@link ButtonDescriptor}.
26 */
27public class ButtonDescriptorTest {
28
29 private static final String ID = "my-id";
30 private static final String GID = "my-glyphId";
31 private static final String TT = "my-tewltyp";
32
33 private ButtonDescriptor bd;
34
35
36 @Test
37 public void basic() {
38 bd = new ButtonDescriptor(ID, GID, TT);
39
40 assertEquals("bad id", ID, bd.id());
41 assertEquals("bad gid", GID, bd.glyphId());
42 assertEquals("bad tt", TT, bd.tooltip());
43 }
44
45}