Create common parent for extensions families
[bgpcep.git] / bgp / extensions / flowspec / src / test / java / org / opendaylight / protocol / bgp / flowspec / OperandsTest.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.protocol.bgp.flowspec;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.junit.Test;
13 import org.opendaylight.protocol.bgp.flowspec.handlers.AbstractOperandParser;
14
15 public class OperandsTest {
16
17     @Test
18     public void testParseLength() {
19         // 00-00-0000 = 1
20         assertEquals(1, AbstractOperandParser.parseLength((byte) 0x00));
21         // 00-01-0000 = 2
22         assertEquals(2, AbstractOperandParser.parseLength((byte) 16));
23         // 00-10-0000 = 4
24         assertEquals(4, AbstractOperandParser.parseLength((byte) 32));
25         // 00-11-0000 = 8
26         assertEquals(8, AbstractOperandParser.parseLength((byte) 48));
27     }
28 }