blob: cc488caf197a9e30de3703b60d58019c6da9245f [file] [log] [blame]
Shashikanth VH47c2da12016-02-04 18:58:15 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Shashikanth VH47c2da12016-02-04 18:58:15 +05303 *
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.bgpio.types;
17
18import org.junit.Test;
19
20import com.google.common.testing.EqualsTester;
21
22/**
23 * Test for BgpFsSourcePrefix flow specification component.
24 */
25public class BgpFsOperatorValueTest {
26 BgpFsOperatorValue tlv1 = new BgpFsOperatorValue((byte) 1, new byte[100]);
27 BgpFsOperatorValue sameAsTlv1 = new BgpFsOperatorValue((byte) 1, new byte[100]);
28 BgpFsOperatorValue tlv2 = new BgpFsOperatorValue((byte) 1, new byte[200]);
29
30 @Test
31 public void testEquality() {
32 new EqualsTester()
33 .addEqualityGroup(tlv1, sameAsTlv1)
34 .addEqualityGroup(tlv2)
35 .testEquals();
36 }
37}