blob: 42c496c5a1f7eb3f1c8d04f255aa4f4398e5c34b [file] [log] [blame]
/**
* Copyright (c) 2019 CEA.
* 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:
* CEA - initial API and implementation and/or initial documentation
*/
/**
*/
package org.eclipse.sensinact.studio.resource.tests;
import junit.textui.TestRunner;
import org.eclipse.sensinact.studio.resource.Action;
import org.eclipse.sensinact.studio.resource.ResourceFactory;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Action</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class ActionTest extends ResourceTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(ActionTest.class);
}
/**
* Constructs a new Action test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ActionTest(String name) {
super(name);
}
/**
* Returns the fixture for this Action test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Action getFixture() {
return (Action)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(ResourceFactory.eINSTANCE.createAction());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //ActionTest