/** * 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.SampleData8Bit; import com.skratchdot.riff.wav.WavFactory; import junit.textui.TestRunner; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Sample Data8 Bit</b></em>'. * <!-- end-user-doc --> * @generated */ public class SampleData8BitTest extends SampleDataTest { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static void main(String[] args) { TestRunner.run(SampleData8BitTest.class); } /** * Constructs a new Sample Data8 Bit test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public SampleData8BitTest(String name) { super(name); } /** * Returns the fixture for this Sample Data8 Bit test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected SampleData8Bit getFixture() { return (SampleData8Bit)fixture; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(WavFactory.eINSTANCE.createSampleData8Bit()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } } //SampleData8BitTest