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