/** * 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 junit.framework.Test; import junit.framework.TestSuite; import junit.textui.TestRunner; /** * <!-- begin-user-doc --> * A test suite for the '<em><b>RIFFWave</b></em>' model. * <!-- end-user-doc --> * @generated */ public class RIFFWaveAllTests extends TestSuite { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static void main(String[] args) { TestRunner.run(suite()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static Test suite() { TestSuite suite = new RIFFWaveAllTests("RIFFWave Tests"); suite.addTest(WavTests.suite()); return suite; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public RIFFWaveAllTests(String name) { super(name); } } //RIFFWaveAllTests