1/*
2 *  AllTests.java
3 *  Copyright (C) 2007 Amin Ahmad.
4 *
5 *  This file is part of Java Ropes.
6 *
7 *  Java Ropes is free software: you can redistribute it and/or modify
8 *  it under the terms of the GNU General Public License as published by
9 *  the Free Software Foundation, either version 3 of the License, or
10 *  (at your option) any later version.
11 *
12 *  Java Ropes is distributed in the hope that it will be useful,
13 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 *  GNU General Public License for more details.
16 *
17 *  You should have received a copy of the GNU General Public License
18 *  along with Java Ropes.  If not, see <http://www.gnu.org/licenses/>.
19 *
20 *  Amin Ahmad can be contacted at amin.ahmad@gmail.com or on the web at
21 *  www.ahmadsoft.org.
22 */
23package org.ahmadsoft.ropes.test;
24
25import junit.framework.Test;
26import junit.framework.TestResult;
27import junit.framework.TestSuite;
28
29public class AllTests {
30
31	public static void main(String[] args) {
32		suite().run(new TestResult());
33	}
34
35	public static Test suite() {
36		TestSuite suite = new TestSuite("Test for org.ahmadsoft.ropes.test");
37		//$JUnit-BEGIN$
38		suite.addTestSuite(RopeTest.class);
39		//$JUnit-END$
40		return suite;
41	}
42
43}
44