Statistics
| Revision:

root / trunk / libraries / libTools / src-test / org / gvsig / tools / exception / AllTests.java @ 23743

History | View | Annotate | Download (1.3 KB)

1 23152 cordinyana
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Gobernment (CIT)
5 23743 jjdelcerro
 *
6 23152 cordinyana
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10 23743 jjdelcerro
 *
11 23152 cordinyana
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15 23743 jjdelcerro
 *
16 23152 cordinyana
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18 23743 jjdelcerro
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 23152 cordinyana
 * MA  02110-1301, USA.
20 23743 jjdelcerro
 *
21 23152 cordinyana
 */
22
23
/*
24
 * AUTHORS (In addition to CIT):
25
 */
26 23150 cordinyana
package org.gvsig.tools.exception;
27
28
import junit.framework.Test;
29
import junit.framework.TestSuite;
30
31
public class AllTests {
32
33
        public static Test suite() {
34 23743 jjdelcerro
                TestSuite suite = new TestSuite("Test for org.gvsig.tools.exceptions");
35 23150 cordinyana
                //$JUnit-BEGIN$
36
                suite.addTestSuite(ListBaseExceptionTest.class);
37
                suite.addTestSuite(BaseExceptionTest.class);
38
                //$JUnit-END$
39
                return suite;
40
        }
41
42
}