Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7d262b12cd71f6cb73912069a6b8bb3e7cdf0d8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*******************************************************************************
 * Copyright (c) 2011 Formal Mind GmbH and University of Dusseldorf.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Michael Jastram - initial API and implementation
 ******************************************************************************/

package org.eclipse.rmf.reqif10.provider;

import org.eclipse.rmf.reqif10.DatatypeDefinitionXHTML;
import org.eclipse.rmf.reqif10.ReqIF10Factory;
import org.junit.After;
import org.junit.Before;

/**
 * A test case for the model object '<em><b>Datatype Definition Xhtml</b></em>'.
 */
public class DatatypeDefinitionXhtmlTest extends DatatypeDefinitionTest {

	/**
	 * Returns the fixture for this Datatype Definition Xhtml test case.
	 */
	@Override
	protected DatatypeDefinitionXHTML getFixture() {
		return (DatatypeDefinitionXHTML)fixture;
	}

	/**
	 * @see junit.framework.TestCase#setUp()
	 */
	@Before
	public void setUpDatatypeDefinitionXhtmlTest() throws Exception {
		setFixture(ReqIF10Factory.eINSTANCE.createDatatypeDefinitionXHTML());
	}

	/**
	 * @see junit.framework.TestCase#tearDown()
	 */
	@After
	public void tearDownDatatypeDefinitionXhtmlTest() throws Exception {
		setFixture(null);
	}

} //DatatypeDefinitionXhtmlTest

Back to the top