1 /* 2 * VectorGraphics2D: Vector export for Java(R) Graphics2D 3 * 4 * (C) Copyright 2010 Erich Seifert <dev[at]erichseifert.de> 5 * 6 * This file is part of VectorGraphics2D. 7 * 8 * VectorGraphics2D is free software: you can redistribute it and/or modify 9 * it under the terms of the GNU Lesser General Public License as published by 10 * the Free Software Foundation, either version 3 of the License, or 11 * (at your option) any later version. 12 * 13 * VectorGraphics2D is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * GNU Lesser General Public License for more details. 17 * 18 * You should have received a copy of the GNU Lesser General Public License 19 * along with VectorGraphics2D. If not, see <http://www.gnu.org/licenses/>. 20 */ 21 22 package de.erichseifert.vectorgraphics2d; 23 24 import org.junit.Before; 25 26 27 public class SVGGraphics2DTest extends VectorGraphics2DTest { 28 29 @Override 30 @Before 31 public void setUp() { 32 g = new SVGGraphics2D(DOC_X, DOC_Y, DOC_W, DOC_H); 33 } 34 35 }