Remove unused imports
[openflowplugin.git] / extension / openflowplugin-extension-api / src / test / java / org / opendaylight / openflowplugin / extension / api / ConverterExtensionActionKeyTest.java
1 /**
2  * Copyright (c) 2014 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.openflowplugin.extension.api;
9
10
11 /**
12  *
13  */
14 public class ConverterExtensionActionKeyTest {
15
16     /**
17      * Test method for {@link org.opendaylight.openflowplugin.extension.api.ConverterExtensionKey#equals(java.lang.Object)}.
18      */
19     /**
20      * Test method for {@link org.opendaylight.openflowplugin.extension.api.ConverterExtensionKey#equals(java.lang.Object)}.
21      */
22 //    @Test
23 //    public void testEqualsObject() {
24 //        ConverterExtensionMatchKey key1 = new ConverterExtensionMatchKey(Match.class);
25 //        ConverterExtensionMatchKey key2 = new ConverterExtensionMatchKey(Match.class);
26 //        ConverterExtensionMatchKey key3 = new ConverterExtensionMatchKey(SpecialMatch.class);
27 //        ConverterExtensionMatchKey key4 = new ConverterExtensionMatchKey(SpecialMatch.class);
28 //
29 //        Assert.assertEquals(key1, key2);
30 //        Assert.assertEquals(key3, key4);
31 //        Assert.assertNotEquals(key1, key4);
32 //    }
33 //
34 //    private static interface SpecialMatch extends Match {
35 //        // nobody
36 //    }
37
38 }