Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libRaster / src-test / org / gvsig / raster / AllTests.java @ 11076

History | View | Annotate | Download (3.55 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19
package org.gvsig.raster;
20
import junit.framework.TestCase;
21

    
22
import org.gvsig.raster.buffer.TDSDoubleAdjustToExtentBufferEcw;
23
import org.gvsig.raster.buffer.TDSDoubleAdjustToExtentBufferGdal;
24
import org.gvsig.raster.buffer.TDSDoubleAdjustToExtentEcw;
25
import org.gvsig.raster.buffer.TDSDoubleAdjustToExtentGdal;
26
import org.gvsig.raster.buffer.TDSIntBufferGdal;
27
import org.gvsig.raster.buffer.TDSIntEcw;
28
import org.gvsig.raster.buffer.TDSIntGdal;
29
import org.gvsig.raster.buffer.TestDataSourceMultiFile;
30
import org.gvsig.raster.buffer.TestGdalByteHistogram;
31
import org.gvsig.raster.buffer.TestGdalByteMultiBandHistogram;
32
import org.gvsig.raster.buffer.TestGdalClassHistogram;
33
import org.gvsig.raster.buffer.cache.TestAssignInterchangeBandsCache;
34
import org.gvsig.raster.buffer.cache.TestRasterCache;
35
import org.gvsig.raster.buffer.cache.TestReadOnlyCache;
36
import org.gvsig.raster.buffer.cache.TestSaveAndLoadPages;
37
import org.gvsig.raster.buffer.cache.TestStructCache;
38
import org.gvsig.raster.buffer.cache.TestWorldCoordHDDPages;
39
import org.gvsig.raster.dataset.TestDataByPixelEcw;
40
import org.gvsig.raster.dataset.TestReadLineEcw;
41
import org.gvsig.raster.dataset.TestStatisticMultiFile;
42
import org.gvsig.raster.dataset.TestStatistics;
43
import org.gvsig.raster.grid.TGEmptyBufferForWrite;
44
import org.gvsig.raster.grid.TGOperations;
45
import org.gvsig.raster.grid.TGReadingFullDatasource;
46
import org.gvsig.raster.grid.TGReadingFullDatasourceSelectingBands;
47
import org.gvsig.raster.grid.filter.TestRasterFilterList;
48
import org.gvsig.raster.grid.render.FormatArrayRenderTest;
49

    
50
public class AllTests extends TestCase{
51

    
52
        public void setUp() {
53
                System.out.println("AllTests");
54
        }
55
        
56
        public void testStack(){
57
                new TDSDoubleAdjustToExtentBufferEcw().start();
58
                new TDSDoubleAdjustToExtentBufferGdal().start();
59
                new TDSDoubleAdjustToExtentEcw().start();
60
                new TDSDoubleAdjustToExtentGdal().start();
61
                new TDSIntEcw().start();
62
                new TDSIntGdal().start();
63
                new TDSIntBufferGdal().start();
64
                new TestDataSourceMultiFile().start();
65
                new TestGdalByteHistogram().start();
66
                new TestGdalByteMultiBandHistogram().start();
67
                new TestGdalClassHistogram().start();
68
                
69
                new TestRasterCache().start();
70
                new TestSaveAndLoadPages().start();
71
                new TestStructCache().start();
72
                new TestWorldCoordHDDPages().start();
73
                new TestAssignInterchangeBandsCache().start();
74
                //new TestReadOnlyCache().start();
75
                
76
                new TestDataByPixelEcw().start();
77
                new TestReadLineEcw().start();
78
                new TestStatisticMultiFile().start();
79
                new TestStatistics().start();
80
                
81
                new TGEmptyBufferForWrite().start();
82
                new TGReadingFullDatasource().start();
83
                new TGReadingFullDatasourceSelectingBands().start();
84
                new TGOperations().start();
85
                
86
                new TestRasterFilterList().start();
87
                
88
                new FormatArrayRenderTest().start();                
89
        }
90

    
91
}