www.pudn.com > jfreechart-0.9.12.zip > AxisPackageTests.java
/* ====================================== * JFreeChart : a free Java chart library * ====================================== * * Project Info: http://www.jfree.org/jfreechart/index.html * Project Lead: David Gilbert (david.gilbert@object-refinery.com); * * (C) Copyright 2000-2003, by Object Refinery Limited and Contributors. * * This library is free software; you can redistribute it and/or modify it under the terms * of the GNU Lesser General Public License as published by the Free Software Foundation; * either version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along with this * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. * * --------------------- * AxisPackageTests.java * --------------------- * (C) Copyright 2003, by Object Refinery Limited. * * Original Author: David Gilbert (for Object Refinery Limited); * Contributor(s): Bill Kelemen; * * $Id: AxisPackageTests.java,v 1.10 2003/07/10 14:17:02 mungady Exp $ * * Changes: * -------- * 26-Mar-2003 : Version 1 (DG); * 25-May-2003 : Added SegmentedTimelineTests (BK); * */ package org.jfree.chart.axis.junit; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * A collection of tests for the com.jrefinery.chart.axis package. ** These tests can be run using JUnit (http://www.junit.org). * * @author David Gilbert */ public class AxisPackageTests extends TestCase { /** * Returns a test suite to the JUnit test runner. * * @return the test suite. */ public static Test suite() { TestSuite suite = new TestSuite("org.jfree.chart.axis"); suite.addTestSuite(DateAxisTests.class); suite.addTestSuite(DateTickUnitTests.class); suite.addTestSuite(CategoryAxisTests.class); suite.addTestSuite(CategoryAxis3DTests.class); suite.addTestSuite(ColorBarTests.class); suite.addTestSuite(SegmentedTimelineTests.class); suite.addTestSuite(LogarithmicAxisTests.class); suite.addTestSuite(MarkerAxisBandTests.class); suite.addTestSuite(NumberAxisTests.class); suite.addTestSuite(NumberAxis3DTests.class); suite.addTestSuite(SymbolicAxisTests.class); return suite; } /** * Constructs the test suite. * * @param name the suite name. */ public AxisPackageTests(String name) { super(name); } }