Remove unused imports
[openflowplugin.git] / extension / openflowplugin-extension-api / src / test / java / org / opendaylight / openflowplugin / extension / api / ConverterExtensionMatchKeyTest.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 public class ConverterExtensionMatchKeyTest {
14
15     /**
16      * Test method for {@link org.opendaylight.openflowplugin.extension.api.ConverterExtensionKey#equals(java.lang.Object)}.
17      */
18 //    @Test
19 //    public void testEqualsObject() {
20 //        ConverterExtensionActionKey key1 = new ConverterExtensionActionKey(OutputActionCase.class);
21 //        ConverterExtensionActionKey key2 = new ConverterExtensionActionKey(OutputActionCase.class);
22 //        ConverterExtensionActionKey key3 = new ConverterExtensionActionKey(SpecialAction.class);
23 //        ConverterExtensionActionKey key4 = new ConverterExtensionActionKey(SpecialAction.class);
24 //
25 //        Assert.assertEquals(key1, key2);
26 //        Assert.assertEquals(key3, key4);
27 //        Assert.assertNotEquals(key1, key4);
28 //    }
29 //
30 //    private static interface SpecialAction extends Action {
31 //        // nobody
32 //    }
33
34 }