Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libGPE-GML / src-test / org / gvsig / gpe / gml / readers / libGPEReaderTestSuite.java @ 12098

History | View | Annotate | Download (2.33 KB)

1
package org.gvsig.gpe.gml.readers;
2

    
3
import junit.framework.Test;
4
import junit.framework.TestSuite;
5

    
6
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
7
 *
8
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
9
 *
10
 * This program is free software; you can redistribute it and/or
11
 * modify it under the terms of the GNU General Public License
12
 * as published by the Free Software Foundation; either version 2
13
 * of the License, or (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU General Public License
21
 * along with this program; if not, write to the Free Software
22
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
23
 *
24
 * For more information, contact:
25
 *
26
 *  Generalitat Valenciana
27
 *   Conselleria d'Infraestructures i Transport
28
 *   Av. Blasco Ib??ez, 50
29
 *   46010 VALENCIA
30
 *   SPAIN
31
 *
32
 *      +34 963862235
33
 *   gvsig@gva.es
34
 *      www.gvsig.gva.es
35
 *
36
 *    or
37
 *
38
 *   IVER T.I. S.A
39
 *   Salamanca 50
40
 *   46005 Valencia
41
 *   Spain
42
 *
43
 *   +34 963163400
44
 *   dac@iver.es
45
 */
46
/* CVS MESSAGES:
47
 *
48
 * $Id: libGPEReaderTestSuite.java 12098 2007-06-11 06:17:36Z jorpiell $
49
 * $Log$
50
 * Revision 1.6  2007-06-11 06:17:36  jorpiell
51
 * Add a new GML test
52
 *
53
 * Revision 1.5  2007/06/08 13:01:12  jorpiell
54
 * Add the targetNamespace to the file
55
 *
56
 * Revision 1.4  2007/05/16 12:34:55  csanchez
57
 * GPEParser Prototipo final de lectura
58
 *
59
 * Revision 1.3  2007/04/25 11:08:38  csanchez
60
 * Parseo correcto con XSOM de esquemas, EntityResolver para los imports
61
 *
62
 * Revision 1.2  2007/04/20 08:33:37  jorpiell
63
 * Test updated
64
 *
65
 * Revision 1.1  2007/04/20 08:13:43  csanchez
66
 * Actualizacion protoripo libGPE
67
 *
68
 *
69
 */
70
/**
71
 * @author Carlos S?nchez Peri??n (sanchez_carper@gva.es)
72
 */
73
public class libGPEReaderTestSuite {
74

    
75
        public static Test suite() {
76
                TestSuite suite = new TestSuite("Test for org.gvsig.gpe.gml.readers");
77
                //$JUnit-BEGIN$
78
                suite.addTestSuite(GMLLinesReader.class);
79
                suite.addTestSuite(GMLPointsReader.class);
80
                suite.addTestSuite(GMLEuroroadsReader.class);
81
                suite.addTestSuite(GMLNomenclatorIdeeReader.class);
82
                suite.addTestSuite(GMLAforosReader.class);
83
                //$JUnit-END$
84
                return suite;
85
        }
86

    
87
}