1 /*
2 Project tests
3
4 Copyright (C) 2003 Jose San Leandro Armend?riz
5 jsanleandro@yahoo.es
6 chousz@yahoo.com
7
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public
10 License as published by the Free Software Foundation; either
11 version 2 of the License, or (at your option) any later version.
12
13 This library 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 GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public
19 License along with this library; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
22 Thanks to ACM S.L. for distributing this library under the GPL license.
23 Contact info: jsr000@terra.es
24 Postal Address: c/Playa de Lagoa, 1
25 Urb. Valdecaba?as
26 Boadilla del monte
27 28660 Madrid
28 Spain
29
30 ******************************************************************************
31 *
32 * Filename: $RCSfile: ContractcheckerSuite.java,v $
33 *
34 * Author: Jose San Leandro Armend?riz
35 *
36 * Description: Executes all tests defined for package
37 * unittests.org.acmsl.contractchecker.
38 *
39 * Last modified by: $Author: chous $ at $Date: 2004/01/11 17:33:05 $
40 *
41 * File version: $Revision: 1.2 $
42 *
43 * Project version: $Name: $
44 *
45 * $Id: ContractcheckerSuite.java,v 1.2 2004/01/11 17:33:05 chous Exp $
46 */
47 package unittests.org.acmsl.contractchecker;
48
49
50 /*
51 * Importing project classes.
52 */
53
54
55
56 /*
57 /* Importing JUnit classes.
58 */
59 import junit.framework.TestSuite;
60
61 // JUnitDoclet begin import
62 // JUnitDoclet end import
63
64 /*
65 This file is part of JUnitDoclet, a project to generate basic
66 test cases from source code and helping to keep them in sync
67 during refactoring.
68
69 Copyright (C) 2002 ObjectFab GmbH (http://www.objectfab.de/)
70
71 This library is free software; you can redistribute it and/or
72 modify it under the terms of the GNU Lesser General Public
73 License as published by the Free Software Foundation; either
74 version 2.1 of the License, or (at your option) any later
75 version.
76
77 This library is distributed in the hope that it will be useful,
78 but WITHOUT ANY WARRANTY; without even the implied warranty of
79 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
80 GNU Lesser General Public License for more details.
81
82 You should have received a copy of the GNU Lesser General
83 Public License along with this library; if not, write to the
84 Free Software Foundation, Inc., 59 Temple Place, Suite 330,
85 Boston, MA 02111-1307 USA
86 */
87
88
89 /***
90 * Executes all tests defined for package
91 * org.acmsl.contractchecker
92 * @version $Revision: 1.2 $
93 * @see org.acmsl.contractchecker
94 */
95 public class ContractcheckerSuite
96 // JUnitDoclet begin extends_implements
97 // JUnitDoclet end extends_implements
98 {
99 // JUnitDoclet begin class
100 // JUnitDoclet end class
101
102 public static TestSuite suite()
103 {
104 TestSuite suite;
105
106 suite =
107 new TestSuite("unittests.org.acmsl.contractchecker");
108
109 suite.addTestSuite(unittests.org.acmsl.contractchecker.ContractCheckerTaskTest.class);
110 suite.addTestSuite(unittests.org.acmsl.contractchecker.ContractCheckerDocletTest.class);
111 suite.addTestSuite(unittests.org.acmsl.contractchecker.ContractCheckerAspectTemplateGeneratorTest.class);
112
113
114
115 // JUnitDoclet begin method suite
116 // JUnitDoclet end method suite
117
118 return suite;
119 }
120
121 public static void main(String[] args)
122 {
123 // JUnitDoclet begin method testsuite.main
124 junit.textui.TestRunner.run(suite());
125 // JUnitDoclet end method testsuite.main
126 }
127 }
This page was automatically generated by Maven