blob: d9c64c3351d9508abbfd4f98c3f35c6c2142c291 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2012 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.AttributeValueDate;
import org.eclipse.rmf.reqif10.ReqIF10Factory;
import org.junit.After;
import org.junit.Before;
/**
* A test case for the model object '<em><b>Attribute Value Date</b></em>'.
*/
public class AttributeValueDateTest extends AttributeValueSimpleTest {
/**
* Returns the fixture for this Attribute Value Date test case.
*/
@Override
protected AttributeValueDate getFixture() {
return (AttributeValueDate)fixture;
}
/**
* @see junit.framework.TestCase#setUp()
*/
@Before
public void setUp() throws Exception {
setFixture(ReqIF10Factory.eINSTANCE.createAttributeValueDate());
}
/**
* @see junit.framework.TestCase#tearDown()
*/
@After
public void tearDown() throws Exception {
setFixture(null);
}
/**
* TODO Not sure what the right type is.
*/
@Override
public Object getValueObject() {
return null;
}
} //AttributeValueDateTest