blob: 5da987b6558bc39e208598e3399fa741a98d5c2f [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.False;
import org.eclipse.stem.core.predicate.Or;
import org.eclipse.stem.core.predicate.PredicateFactory;
import org.eclipse.stem.core.predicate.True;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Or</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("all")
public class OrTest extends NaryBooleanOperatorTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(OrTest.class);
}
/**
* Constructs a new Or test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public OrTest(String name) {
super(name);
}
/**
* Returns the fixture for this Or test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Or getFixture() {
return (Or)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated NOT
*/
@Override
protected void setUp() throws Exception {
final Or orExpression = PredicateFactory.eINSTANCE.createOr();
final False false0 = PredicateFactory.eINSTANCE.createFalse();
final True true0 = PredicateFactory.eINSTANCE.createTrue();
orExpression.getOperands().add(false0);
orExpression.getOperands().add(true0);
setFixture(orExpression);
} // setUp
/**
* <!-- 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#getExpectedResult()
*/
@Override
protected boolean getExpectedResult() {
return true;
}
} //OrTest