| 1 | /** |
| 2 | * <copyright> |
| 3 | * </copyright> |
| 4 | * |
| 5 | * $Id$ |
| 6 | */ |
| 7 | package de.uka.ipd.sdq.probespec.tests; |
| 8 | |
| 9 | import de.uka.ipd.sdq.probespec.Calculator; |
| 10 | |
| 11 | import junit.framework.TestCase; |
| 12 | |
| 13 | /** |
| 14 | * <!-- begin-user-doc --> |
| 15 | * A test case for the model object '<em><b>Calculator</b></em>'. |
| 16 | * <!-- end-user-doc --> |
| 17 | * @generated |
| 18 | */ |
| 19 | public abstract class CalculatorTest extends TestCase { |
| 20 | |
| 21 | /** |
| 22 | * The fixture for this Calculator test case. |
| 23 | * <!-- begin-user-doc --> |
| 24 | * <!-- end-user-doc --> |
| 25 | * @generated |
| 26 | */ |
| 27 | protected Calculator fixture = null; |
| 28 | |
| 29 | /** |
| 30 | * Constructs a new Calculator test case with the given name. |
| 31 | * <!-- begin-user-doc --> |
| 32 | * <!-- end-user-doc --> |
| 33 | * @generated |
| 34 | */ |
| 35 | public CalculatorTest(String name) { |
| 36 | super(name); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Sets the fixture for this Calculator test case. |
| 41 | * <!-- begin-user-doc --> |
| 42 | * <!-- end-user-doc --> |
| 43 | * @generated |
| 44 | */ |
| 45 | protected void setFixture(Calculator fixture) { |
| 46 | this.fixture = fixture; |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Returns the fixture for this Calculator test case. |
| 51 | * <!-- begin-user-doc --> |
| 52 | * <!-- end-user-doc --> |
| 53 | * @generated |
| 54 | */ |
| 55 | protected Calculator getFixture() { |
| 56 | return fixture; |
| 57 | } |
| 58 | |
| 59 | } //CalculatorTest |