/** * 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.ChunkDataListType; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Chunk Data List Type</b></em>'. * <!-- end-user-doc --> * <p> * The following features are tested: * <ul> * <li>{@link com.skratchdot.riff.wav.ChunkDataListType#getTextAsString() <em>Text As String</em>}</li> * </ul> * </p> * @generated */ public abstract class ChunkDataListTypeTest extends ChunkTest { /** * Constructs a new Chunk Data List Type test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ChunkDataListTypeTest(String name) { super(name); } /** * Returns the fixture for this Chunk Data List Type test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected ChunkDataListType getFixture() { return (ChunkDataListType)fixture; } /** * Tests the '{@link com.skratchdot.riff.wav.ChunkDataListType#getTextAsString() <em>Text As String</em>}' feature getter. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see com.skratchdot.riff.wav.ChunkDataListType#getTextAsString() * @generated */ public void testGetTextAsString() { // TODO: implement this feature getter test method // Ensure that you remove @generated or mark it @generated NOT fail(); } } //ChunkDataListTypeTest