blob: 43748775ad2741c2f37ab8552333e2d2045955ea [file] [log] [blame]
package org.eclipse.stem.core.predicate.tests;
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import junit.textui.TestRunner;
import org.eclipse.stem.core.predicate.PredicateFactory;
import org.eclipse.stem.core.predicate.PredicateReference;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Reference</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("all")
public class PredicateReferenceTest extends PredicateTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(PredicateReferenceTest.class);
}
/**
* Constructs a new Reference test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public PredicateReferenceTest(String name) {
super(name);
}
/**
* Returns the fixture for this Reference test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected PredicateReference getFixture() {
return (PredicateReference)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(PredicateFactory.eINSTANCE.createPredicateReference());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
/**
* @see org.eclipse.stem.core.predicate.tests.PredicateTest#testEvaluate__STEMTime_long_Decorator()
*/
@Override
public void testEvaluate__STEMTime_long_Decorator() {
assertTrue(true);
}
/**
* @see org.eclipse.stem.core.predicate.tests.PredicateTest#getExpectedResult()
*/
@Override
protected boolean getExpectedResult() {
return false;
}
} //PredicateReferenceTest