Add methods for modifying deserializer mapping
[openflowjava.git] / openflow-protocol-api / src / test / java / org / opendaylight / openflowjava / protocol / api / keys / TypeToClassKeyTest.java
1 /*
2  * Copyright (c) 2014 Pantheon Technologies s.r.o. 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
9 package org.opendaylight.openflowjava.protocol.api.keys;
10
11 import org.junit.Assert;
12 import org.junit.Test;
13 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
14 /**
15  *
16  * @author madamjak
17  *
18  */
19 public class TypeToClassKeyTest {
20
21     /**
22      * Test equals
23      */
24     @Test
25     public void test(){
26         final short ver10 = EncodeConstants.OF10_VERSION_ID;
27         final short ver13 = EncodeConstants.OF13_VERSION_ID;
28         final int type1 = 1;
29         final int type2 = 2;
30         TypeToClassKey typeToClsKey10 = new TypeToClassKey(ver10,type1);
31         Assert.assertTrue("Wrong - equals to same object", typeToClsKey10.equals(typeToClsKey10));
32         Assert.assertFalse("Wrong - equals to null", typeToClsKey10.equals(null));
33         Assert.assertFalse("Wrong - equals to different class", typeToClsKey10.equals(new Object()));
34         TypeToClassKey typeToClsKey13 = new TypeToClassKey(ver13,type2);
35         Assert.assertFalse("Wrong - equals by different version", typeToClsKey13.equals(new Object()));
36         Assert.assertFalse("Wrong - equals by different type", typeToClsKey13.equals(typeToClsKey10));
37     }
38 }