Fix checkstyle
[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 public class ConverterExtensionMatchKeyTest {
11
12 //    @Test
13 //    public void testEqualsObject() {
14 //        ConverterExtensionActionKey key1 = new ConverterExtensionActionKey(OutputActionCase.class);
15 //        ConverterExtensionActionKey key2 = new ConverterExtensionActionKey(OutputActionCase.class);
16 //        ConverterExtensionActionKey key3 = new ConverterExtensionActionKey(SpecialAction.class);
17 //        ConverterExtensionActionKey key4 = new ConverterExtensionActionKey(SpecialAction.class);
18 //
19 //        Assert.assertEquals(key1, key2);
20 //        Assert.assertEquals(key3, key4);
21 //        Assert.assertNotEquals(key1, key4);
22 //    }
23 //
24 //    private static interface SpecialAction extends Action {
25 //        // nobody
26 //    }
27
28 }