/** * Copyright (c) 2009-2011 SKRATCHDOT.COM * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * http://www.eclipse.org/legal/epl-v10.html * * Initial modeling finished using information provided by: * http://www.sonicspot.com/guide/wavefiles.html * * Contributors: * JEFF |:at:| SKRATCHDOT |:dot:| COM * * $Id$ */ package com.skratchdot.riff.wav.tests; import com.skratchdot.riff.wav.SampleData; import junit.framework.TestCase; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Sample Data</b></em>'. * <!-- end-user-doc --> * @generated */ public abstract class SampleDataTest extends TestCase { /** * The fixture for this Sample Data test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected SampleData fixture = null; /** * Constructs a new Sample Data test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public SampleDataTest(String name) { super(name); } /** * Sets the fixture for this Sample Data test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(SampleData fixture) { this.fixture = fixture; } /** * Returns the fixture for this Sample Data test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected SampleData getFixture() { return fixture; } } //SampleDataTest