blob: bc5d0f66add511c1a8736c3cfadeb87d57bcfabb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Bundesinstitut für Risikobewertung.
* 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:
* Bundesinstitut für Risikobewertung - initial API and implementation
*******************************************************************************/
package org.eclipse.stem.tests.grapheditor;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.stem.ui.grapheditor.GraphCanvas;
public class GraphCanvasTest extends TestCase {
protected GraphCanvas fixture = null;
public static void main(String[] args) {
TestRunner.run(GraphCanvasTest.class);
}
@Override
protected void setUp() throws Exception {
setFixture(createFixture());
}
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
protected void setFixture(GraphCanvas fixture) {
this.fixture = fixture;
}
protected GraphCanvas getFixture() {
return fixture;
}
protected static GraphCanvas createFixture() {
return null;
}
public void testGraphCanvas() {
assertTrue(true);
}
}