blob: bff0b24437ef44df7fb5d76b82a0a4ebf09f8362 [file] [log] [blame]
/*
* Copyright 2019-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.%
*/
package org.onosproject.pipelines.fabric.impl.behaviour.bng;
import com.google.common.testing.EqualsTester;
import org.junit.Test;
/**
* Tests for FabricBngLineIdAllocator.Handle.
*/
public class FabricBngLineIdAllocatorHandleTest {
@Test
public void equalityTest() {
var handle1 = new FabricBngLineIdAllocator.Handle(
new MockAttachment(1));
var sameAsHandle1 = new FabricBngLineIdAllocator.Handle(
new MockAttachment(1));
var handle2 = new FabricBngLineIdAllocator.Handle(
new MockAttachment(2));
new EqualsTester()
.addEqualityGroup(handle1, sameAsHandle1)
.addEqualityGroup(handle2)
.testEquals();
}
}