blob: 1af1f061756ad6ba48dcea9ddbfe57f4dfd3e499 [file] [log] [blame]
/**
* Copyright (c) 2004 - 2008 Eike Stepper, Germany.
* 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:
* Eike Stepper - initial API and implementation
*
*
* $Id: TagTest.java,v 1.3 2008-08-01 07:53:24 estepper Exp $
*/
package org.eclipse.net4j.pop.tests;
import org.eclipse.net4j.pop.PopFactory;
import org.eclipse.net4j.pop.Tag;
import junit.framework.TestCase;
import junit.textui.TestRunner;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Tag</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class TagTest extends TestCase
{
/**
* The fixture for this Tag test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Tag fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args)
{
TestRunner.run(TagTest.class);
}
/**
* Constructs a new Tag test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public TagTest(String name)
{
super(name);
}
/**
* Sets the fixture for this Tag test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(Tag fixture)
{
this.fixture = fixture;
}
/**
* Returns the fixture for this Tag test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Tag getFixture()
{
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception
{
setFixture(PopFactory.eINSTANCE.createTag());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception
{
setFixture(null);
}
} //TagTest