blob: 0bf940bbf90a2b88844e0b6d1b7174dc20ec3bdf [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*
*/
package org.eclipse.osbp.ecview.extension.grid.memento.tests;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.extension.grid.memento.CxGridMementoFactory;
import org.eclipse.osbp.ecview.extension.grid.memento.CxGridMementoSortable;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Sortable</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class CxGridMementoSortableTest extends TestCase {
/**
* The fixture for this Sortable test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected CxGridMementoSortable fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(CxGridMementoSortableTest.class);
}
/**
* Constructs a new Sortable test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public CxGridMementoSortableTest(String name) {
super(name);
}
/**
* Sets the fixture for this Sortable test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(CxGridMementoSortable fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Sortable test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected CxGridMementoSortable getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(CxGridMementoFactory.eINSTANCE.createCxGridMementoSortable());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //CxGridMementoSortableTest