blob: bff0b24437ef44df7fb5d76b82a0a4ebf09f8362 [file] [log] [blame]
Carmelo Cascone42fdec32019-12-09 22:36:48 -08001/*
2 * Copyright 2019-present Open Networking Foundation
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.onosproject.pipelines.fabric.impl.behaviour.bng;
18
19import com.google.common.testing.EqualsTester;
20import org.junit.Test;
21
22/**
23 * Tests for FabricBngLineIdAllocator.Handle.
24 */
25public class FabricBngLineIdAllocatorHandleTest {
26
27 @Test
28 public void equalityTest() {
29 var handle1 = new FabricBngLineIdAllocator.Handle(
30 new MockAttachment(1));
31 var sameAsHandle1 = new FabricBngLineIdAllocator.Handle(
32 new MockAttachment(1));
33 var handle2 = new FabricBngLineIdAllocator.Handle(
34 new MockAttachment(2));
35
36 new EqualsTester()
37 .addEqualityGroup(handle1, sameAsHandle1)
38 .addEqualityGroup(handle2)
39 .testEquals();
40 }
41}