1 /*
2 Bloof - visualize the evolution of your software project
3 Copyright ( C ) 2003 Lukasz Pekacki <lukasz@pekacki.de>
4 http://bloof.sf.net/
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License along with
15 this program; if not, write to the Free Software Foundation, Inc.,
16 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 $RCSfile: AllTests.java,v $
19 Created on $Date: 2003/09/06 08:35:09 $
20 */
21 package net.sf.bloof.test.metrics;
22
23 import junit.framework.Test;
24 import junit.framework.TestSuite;
25
26 /***
27 * Database package test suite
28 * @author Lukasz Pekacki <pekacki@users.sourceforge.net>
29 * @version $Id: AllTests.java,v 1.8 2003/09/06 08:35:09 pekacki Exp $
30 */
31 public class AllTests {
32
33 /***
34 * Method suite.
35 * @return Test
36 */
37 public static Test suite() {
38 TestSuite suite = new TestSuite(AllTests.class.getPackage().getName());
39 //$JUnit-BEGIN$
40 suite.addTest(new TestSuite(FileGroupTest.class));
41 suite.addTest(new TestSuite(TimeIntervalTest.class));
42 suite.addTest(new TestSuite(TimeLineResultTest.class));
43 //$JUnit-END$
44 return suite;
45 }
46 }
This page was automatically generated by Maven