/* * @(#)Test.java * * Project: JHotdraw - a GUI framework for technical drawings * http://www.jhotdraw.org * http://jhotdraw.sourceforge.net * Copyright: (c) by the original author(s) and all contributors * License: Lesser GNU Public License (LGPL) * http://www.opensource.org/licenses/lgpl-license.html */ package org.jhotdraw.test.samples.net; import junit.framework.Test; import junit.framework.TestSuite; /** * @author <a href="mailto:mtnygard@charter.net">Michael T. Nygard</a> * @version $Revision: 231 $ */ public class AllTests { public static void main(String[] args) { junit.textui.TestRunner.run(AllTests.class); } public static Test suite() { TestSuite suite = new TestSuite("Test for org.jhotdraw.test.samples.net"); //$JUnit-BEGIN$ suite.addTest(new TestSuite(NetAppTest.class)); suite.addTest(new TestSuite(NodeFigureTest.class)); //$JUnit-END$ return suite; } }