blob: 98e968db19011773836ac63db07082e13e1f5220 [file] [log] [blame]
Mahesh Poojary S5afd06c2015-08-21 14:51:04 +05301/*
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 */
16package org.onosproject.pcepio;
17
18import org.junit.Test;
19import org.onosproject.pcepio.types.SharedRiskLinkGroupTlv;
20
21import com.google.common.testing.EqualsTester;
22
23/**
24 * Test case for Shared Risk Link Group tlv.
25 */
26public class SharedRiskLinkGroupTlvTest {
27
SureshBRf90259f2015-08-25 14:56:55 +053028 private final int[] raw = {1 };
29 private final Short hLength = new Short((short) 2);
Mahesh Poojary S5afd06c2015-08-21 14:51:04 +053030 private final SharedRiskLinkGroupTlv tlv1 = SharedRiskLinkGroupTlv.of(raw, hLength);
31
SureshBRf90259f2015-08-25 14:56:55 +053032 private final SharedRiskLinkGroupTlv sameAsTlv1 = SharedRiskLinkGroupTlv.of(raw, hLength);
Mahesh Poojary S5afd06c2015-08-21 14:51:04 +053033
SureshBRf90259f2015-08-25 14:56:55 +053034 private final int[] raw2 = {2 };
35 private final Short hLength2 = new Short((short) 3);
36 private final SharedRiskLinkGroupTlv tlv2 = SharedRiskLinkGroupTlv.of(raw2, hLength2);
Mahesh Poojary S5afd06c2015-08-21 14:51:04 +053037
38 @Test
39 public void basics() {
SureshBRf90259f2015-08-25 14:56:55 +053040 new EqualsTester().addEqualityGroup(tlv1, sameAsTlv1).addEqualityGroup(tlv2).testEquals();
Mahesh Poojary S5afd06c2015-08-21 14:51:04 +053041 }
42
43}