Revision 33614

View differences:

branches/v2_0_0_prep/libraries/libFMap_dalindex/src-test/org/gvsig/fmap/dal/index/IndexTest.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
* 
6
* 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
* 
11
* 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
* 
16
* 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
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
21
*/
22

  
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2008 {{Company}}   {{Task}}
26
*/
27
 
28
package org.gvsig.fmap.dal.index;
29

  
30
import junit.framework.TestCase;
31

  
32
/**
33
 * TODO Update these tests according to new design
34
 */
35
public class IndexTest extends TestCase {
36
		
37
	protected void setUp() throws Exception {
38
		super.setUp();
39
	}
40
	
41
	public void testVoid() {
42
        // TODO
43
    }
44
}
branches/v2_0_0_prep/libraries/libProjection/pom.xml
40 40
	  <build>
41 41
		<sourceDirectory>src</sourceDirectory>
42 42
		<testSourceDirectory>src-test</testSourceDirectory>
43
        <plugins>
44
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
45
            <plugin>
46
                <groupId>org.apache.maven.plugins</groupId>
47
                <artifactId>maven-surefire-plugin</artifactId>
48
                <configuration>
49
                    <skipTests>true</skipTests>
50
                </configuration>
51
            </plugin>
52
        </plugins>        
43 53
	  </build>	
44 54
	
45 55
	  <profiles>
branches/v2_0_0_prep/libraries/libEvaluator_SQLJEP/pom.xml
53 53
				<directory>${basedir}/resources</directory>
54 54
			</resource>
55 55
		</resources>
56
        <plugins>
57
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
58
            <plugin>
59
                <groupId>org.apache.maven.plugins</groupId>
60
                <artifactId>maven-surefire-plugin</artifactId>
61
                <configuration>
62
                    <skipTests>true</skipTests>
63
                </configuration>
64
            </plugin>       
65
        </plugins>        
56 66
	</build>
57 67
</project>
branches/v2_0_0_prep/libraries/libDXF/src-test/org/gvsig/dxf/AllTests.java
1
package org.gvsig.dxf;
2

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

  
6
public class AllTests {
7

  
8
	public static Test suite() {
9
		TestSuite suite = new TestSuite("Test for org.cresques.dxf");
10
		//$JUnit-BEGIN$
11

  
12
		//$JUnit-END$
13
		return suite;
14
	}
15

  
16
}
branches/v2_0_0_prep/libraries/org.gvsig.annotation/org.gvsig.annotation.lib/org.gvsig.annotation.lib.api/pom.xml
21 21
		</dependency>	
22 22
		<dependency>
23 23
			<groupId>org.gvsig</groupId>
24
			<artifactId>org.gvsig.tools.lib</artifactId>	
24
			<artifactId>org.gvsig.tools.lib</artifactId>
25 25
			<type>test-jar</type>
26 26
			<scope>test</scope>		
27 27
		</dependency>	
branches/v2_0_0_prep/libraries/org.gvsig.annotation/pom.xml
74 74
					<tagBase>https://svn.forge.osor.eu/svn/gvsig-annotation/org.gvsig.annotation/library/tags</tagBase>
75 75
				</configuration>
76 76
			</plugin>
77
		</plugins>
77
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
78
            <plugin>
79
                <groupId>org.apache.maven.plugins</groupId>
80
                <artifactId>maven-surefire-plugin</artifactId>
81
                <configuration>
82
                    <skipTests>true</skipTests>
83
                </configuration>
84
            </plugin>
85
        </plugins>        
78 86
	</build>
79 87
	<dependencyManagement>
80 88
		<dependencies>
branches/v2_0_0_prep/libraries/libFMap_dal/pom.xml
279 279
			<plugin>
280 280
				<groupId>org.apache.maven.plugins</groupId>
281 281
				<artifactId>maven-surefire-plugin</artifactId>
282
				<version>2.4.2</version>
283 282
				<configuration>
284 283
					<excludes>
285 284
						<exclude>**/BlockTest.java</exclude>
......
288 287
						<additionalClasspathElement>${basedir}/resources/api</additionalClasspathElement>
289 288
						<additionalClasspathElement>${basedir}/resources/impl</additionalClasspathElement>
290 289
					</additionalClasspathElements>
290
                    <skipTests>true</skipTests>
291 291
				</configuration>
292 292
			</plugin>
293 293
		</plugins>
branches/v2_0_0_prep/libraries/libCorePlugin/src-test/org/gvsig/coreplugin/AllTests.java
1
package org.gvsig.coreplugin;
2

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

  
6
public class AllTests {
7

  
8
	public static Test suite() {
9
		TestSuite suite = new TestSuite("Test for org.gvsig.coreplugin");
10
		//$JUnit-BEGIN$
11

  
12
		//$JUnit-END$
13
		return suite;
14
	}
15

  
16
}
branches/v2_0_0_prep/libraries/libDwg/pom.xml
48 48
				<directory>src-test</directory>
49 49
			</testResource>
50 50
		</testResources>
51
        <plugins>
52
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
53
            <plugin>
54
                <groupId>org.apache.maven.plugins</groupId>
55
                <artifactId>maven-surefire-plugin</artifactId>
56
                <configuration>
57
                    <skipTests>true</skipTests>
58
                </configuration>
59
            </plugin>       
60
        </plugins>
51 61
	</build>
52 62
</project>
branches/v2_0_0_prep/extensions/extI18n/pom.xml
79 79
				</excludes>
80 80
			</resource>
81 81
		</resources>
82
        <plugins>
83
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
84
            <plugin>
85
                <groupId>org.apache.maven.plugins</groupId>
86
                <artifactId>maven-surefire-plugin</artifactId>
87
                <configuration>
88
                    <skipTests>true</skipTests>
89
                </configuration>
90
            </plugin>       
91
        </plugins>        
82 92
	</build>
83 93
</project>
branches/v2_0_0_prep/extensions/org.gvsig.installer/org.gvsig.installer.lib/pom.xml
12 12
		<artifactId>org.gvsig.installer</artifactId>
13 13
		<version>1.0.0-SNAPSHOT</version>
14 14
	</parent>
15

  
15

  
16
    <build>    
17
        <plugins>
18
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
19
            <plugin>
20
                <groupId>org.apache.maven.plugins</groupId>
21
                <artifactId>maven-surefire-plugin</artifactId>
22
                <configuration>
23
                    <skipTests>true</skipTests>
24
                </configuration>
25
            </plugin>
26
        </plugins>
27
    </build>
16 28
	<modules>
17 29
		<module>org.gvsig.installer.lib.api</module>
18 30
		<module>org.gvsig.installer.lib.spi</module>
branches/v2_0_0_prep/extensions/extHelp/pom.xml
89 89
	<build>
90 90
		<sourceDirectory>src</sourceDirectory>
91 91
		<testSourceDirectory>src-test</testSourceDirectory>
92
        <plugins>
93
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
94
            <plugin>
95
                <groupId>org.apache.maven.plugins</groupId>
96
                <artifactId>maven-surefire-plugin</artifactId>
97
                <configuration>
98
                    <skipTests>true</skipTests>
99
                </configuration>
100
            </plugin>       
101
        </plugins>
92 102
	</build>
93 103
</project>
branches/v2_0_0_prep/extensions/extCenterViewToPoint/pom.xml
25 25
	<build>
26 26
		<sourceDirectory>src</sourceDirectory>
27 27
		<testSourceDirectory>src-test</testSourceDirectory>
28
        <plugins>
29
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
30
            <plugin>
31
                <groupId>org.apache.maven.plugins</groupId>
32
                <artifactId>maven-surefire-plugin</artifactId>
33
                <configuration>
34
                    <skipTests>true</skipTests>
35
                </configuration>
36
            </plugin>       
37
        </plugins>
28 38
	</build>
29 39
	<dependencies>
30 40
		<dependency>
branches/v2_0_0_prep/extensions/extDalTransform/pom.xml
73 73
						</configuration>
74 74
					</execution>
75 75
				</executions>
76
			</plugin>	
76
			</plugin>
77
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
78
            <plugin>
79
                <groupId>org.apache.maven.plugins</groupId>
80
                <artifactId>maven-surefire-plugin</artifactId>
81
                <configuration>
82
                    <skipTests>true</skipTests>
83
                </configuration>
84
            </plugin>       
77 85
		</plugins>
78 86
	</build>	
79 87
	
branches/v2_0_0_prep/extensions/extDataLocator/pom.xml
25 25
	<build>
26 26
		<sourceDirectory>src</sourceDirectory>
27 27
		<testSourceDirectory>src-test</testSourceDirectory>
28
        <plugins>
29
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
30
            <plugin>
31
                <groupId>org.apache.maven.plugins</groupId>
32
                <artifactId>maven-surefire-plugin</artifactId>
33
                <configuration>
34
                    <skipTests>true</skipTests>
35
                </configuration>
36
            </plugin>       
37
        </plugins>        
28 38
	</build>
29 39
	<dependencies>
30 40
		<dependency>
branches/v2_0_0_prep/extensions/extExpressionField/pom.xml
25 25
	<build>
26 26
		<sourceDirectory>src</sourceDirectory>
27 27
		<testSourceDirectory>src-test</testSourceDirectory>
28
        <plugins>
29
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
30
            <plugin>
31
                <groupId>org.apache.maven.plugins</groupId>
32
                <artifactId>maven-surefire-plugin</artifactId>
33
                <configuration>
34
                    <skipTests>true</skipTests>
35
                </configuration>
36
            </plugin>       
37
        </plugins>        
28 38
	</build>
29 39
	<dependencies>
30 40
		<dependency>
branches/v2_0_0_prep/extensions/extGeoDB/pom.xml
74 74
	<build>
75 75
		<sourceDirectory>src</sourceDirectory>
76 76
		<!--		<testSourceDirectory>src-test</testSourceDirectory>-->
77
        <plugins>
78
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
79
            <plugin>
80
                <groupId>org.apache.maven.plugins</groupId>
81
                <artifactId>maven-surefire-plugin</artifactId>
82
                <configuration>
83
                    <skipTests>true</skipTests>
84
                </configuration>
85
            </plugin>       
86
        </plugins>        
77 87
	</build>
78 88
</project>
branches/v2_0_0_prep/extensions/extWFS2/pom.xml
189 189
					<additionalClasspathElements>
190 190
						<additionalClasspathElement>${basedir}/resources</additionalClasspathElement>
191 191
					</additionalClasspathElements>
192
				</configuration>
193
			</plugin>
194
			<!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
192
        			<!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
193
                    <skipTests>true</skipTests>
194
                </configuration>
195
            </plugin>       
195 196
			<plugin>
196 197
				<groupId>org.apache.maven.plugins</groupId>
197
				<artifactId>maven-surefire-plugin</artifactId>
198
				<configuration>
199
					<skipTests>true</skipTests>
200
				</configuration>
201
			</plugin>
202
			<plugin>
203
				<groupId>org.apache.maven.plugins</groupId>
204 198
				<artifactId>maven-compiler-plugin</artifactId>
205 199
				<configuration>
206 200
					<testExcludes>
branches/v2_0_0_prep/extensions/extEditing/pom.xml
24 24
  <build>
25 25
    <sourceDirectory>src</sourceDirectory>
26 26
    <testSourceDirectory>src-test</testSourceDirectory>
27
    <plugins>
28
        <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
29
        <plugin>
30
            <groupId>org.apache.maven.plugins</groupId>
31
            <artifactId>maven-surefire-plugin</artifactId>
32
            <configuration>
33
                <skipTests>true</skipTests>
34
            </configuration>
35
        </plugin>       
36
    </plugins>    
27 37
  </build>
28 38
  <dependencies>
29 39
    <dependency>
branches/v2_0_0_prep/extensions/extRasterTools-SE/pom.xml
202 202
                	<additionalClasspathElements>
203 203
                        <additionalClasspathElement>${basedir}/resources/fmap</additionalClasspathElement>                    
204 204
                	</additionalClasspathElements>
205
                    <skipTests>true</skipTests>
205 206
        		</configuration>
206 207
			</plugin>					
207 208
		</plugins>
branches/v2_0_0_prep/extensions/extWCS/pom.xml
143 143
			                <additionalClasspathElements>
144 144
			                        <additionalClasspathElement>${basedir}/resources/fmap</additionalClasspathElement>
145 145
			                </additionalClasspathElements>
146
			        </configuration>
147
			</plugin>	
146
                            <skipTests>true</skipTests>
147
                    </configuration>
148
            </plugin>       
148 149
		</plugins>
149 150
	</build>
150 151
</project>
branches/v2_0_0_prep/extensions/extJCRS/pom.xml
67 67
	<build>
68 68
		<sourceDirectory>src</sourceDirectory>
69 69
<!--		<testSourceDirectory>src-test</testSourceDirectory>-->
70
        <plugins>
71
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
72
            <plugin>
73
                <groupId>org.apache.maven.plugins</groupId>
74
                <artifactId>maven-surefire-plugin</artifactId>
75
                <configuration>
76
                    <skipTests>true</skipTests>
77
                </configuration>
78
            </plugin>       
79
        </plugins>
70 80
	</build>
71 81
</project>
branches/v2_0_0_prep/extensions/extWMS/pom.xml
128 128
					</execution>
129 129
				</executions>
130 130
			</plugin>
131
			<!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
132 131
			<plugin>
133
				<groupId>org.apache.maven.plugins</groupId>
134
				<artifactId>maven-surefire-plugin</artifactId>
135
				<configuration>
136
					<skipTests>true</skipTests>
137
				</configuration>
138
			</plugin>
139
			<plugin>
140 132
			    <artifactId>maven-antrun-plugin</artifactId>
141 133
			    <executions>
142 134
			            <execution>
......
163 155
			                <additionalClasspathElements>
164 156
			                        <additionalClasspathElement>${basedir}/resources/fmap</additionalClasspathElement>
165 157
			                </additionalClasspathElements>
166
			        </configuration>
158
                    <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
159
                    <skipTests>true</skipTests>
160
                </configuration>
167 161
			</plugin>			
168 162
		</plugins>
169 163
	</build>
branches/v2_0_0_prep/extensions/extIconThemeBase/pom.xml
36 36
	</properties>
37 37
	<build>
38 38
		<sourceDirectory>src</sourceDirectory>
39
        <plugins>
40
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
41
            <plugin>
42
                <groupId>org.apache.maven.plugins</groupId>
43
                <artifactId>maven-surefire-plugin</artifactId>
44
                <configuration>
45
                    <skipTests>true</skipTests>
46
                </configuration>
47
            </plugin>       
48
        </plugins>        
39 49
	</build>
40 50
</project>
branches/v2_0_0_prep/frameworks/_fwAndami/pom.xml
168 168
					</environmentVariables>
169 169
				</configuration>
170 170
			</plugin>
171
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
172
            <plugin>
173
                <groupId>org.apache.maven.plugins</groupId>
174
                <artifactId>maven-surefire-plugin</artifactId>
175
                <configuration>
176
                    <skipTests>true</skipTests>
177
                </configuration>
178
            </plugin>
171 179
		</plugins>
172 180
	</build>
173 181
	<profiles>

Also available in: Unified diff