/** * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.openflowplugin.extension.api; /** * */ public class ConverterExtensionMatchKeyTest { /** * Test method for {@link org.opendaylight.openflowplugin.extension.api.ConverterExtensionKey#equals(java.lang.Object)}. */ // @Test // public void testEqualsObject() { // ConverterExtensionActionKey key1 = new ConverterExtensionActionKey(OutputActionCase.class); // ConverterExtensionActionKey key2 = new ConverterExtensionActionKey(OutputActionCase.class); // ConverterExtensionActionKey key3 = new ConverterExtensionActionKey(SpecialAction.class); // ConverterExtensionActionKey key4 = new ConverterExtensionActionKey(SpecialAction.class); // // Assert.assertEquals(key1, key2); // Assert.assertEquals(key3, key4); // Assert.assertNotEquals(key1, key4); // } // // private static interface SpecialAction extends Action { // // nobody // } }