/******************************************************************************* * This file is protected by Copyright. * Please refer to the COPYRIGHT file distributed with this source distribution. * * This file is part of REDHAWK IDE. * * 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 *******************************************************************************/ // BEGIN GENERATED CODE package gov.redhawk.ide.sdr.tests; import gov.redhawk.ide.sdr.SoftPkgRegistry; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Soft Pkg Registry</b></em>'. * <!-- end-user-doc --> * <p> * The following operations are tested: * <ul> * <li>{@link gov.redhawk.ide.sdr.SoftPkgRegistry#getSoftPkg(java.lang.String) <em>Get Soft Pkg</em>}</li> * </ul> * </p> * @generated */ public abstract class SoftPkgRegistryTest extends PropertyRegistryTest { /** * Constructs a new Soft Pkg Registry test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public SoftPkgRegistryTest(String name) { super(name); } /** * Returns the fixture for this Soft Pkg Registry test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected SoftPkgRegistry getFixture() { return (SoftPkgRegistry)fixture; } /** * Tests the '{@link gov.redhawk.ide.sdr.SoftPkgRegistry#getSoftPkg(java.lang.String) <em>Get Soft Pkg</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see gov.redhawk.ide.sdr.SoftPkgRegistry#getSoftPkg(java.lang.String) * @generated NOT */ public void testGetSoftPkg__String() { // END GENERATED CODE getFixture().getSoftPkg(null); // BEGIN GENERATED CODE } } //SoftPkgRegistryTest