blob: dda556e3ee43919c008632c4e6546e6289190bdf [file] [log] [blame]
Thomas Vachuska48448082016-02-19 22:14:54 -08001/*
2 * Copyright 2014-2016 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
17package org.onlab.util;
18
19import com.google.common.testing.EqualsTester;
20import org.junit.Test;
21
22import static org.junit.Assert.*;
23
24/**
25 * Test of the base identifier.
26 */
27public class IdentifierTest {
28
29 @Test
30 public void basics() {
31 FooId id = new FooId(123);
32 assertEquals("incorrect value", 123, (int) id.id());
33 }
34
35 @Test
36 public void equality() {
37 FooId a = new FooId(1);
38 FooId b = new FooId(1);
39 FooId c = new FooId(2);
40 new EqualsTester().addEqualityGroup(a, b).addEqualityGroup(c).testEquals();
41 }
42
43 static class FooId extends Identifier<Integer> {
44 FooId(int id) {
45 super(id);
46 }
47 }
48
49}