Revision 13479

View differences:

trunk/extensions/extWCS/build.xml
22 22
	<property name="andamiJar" location="${andami}/andami.jar"/>
23 23
	<property name="fmapJar" location="../libFMap/dist/lib/fmap.jar" />
24 24
	<property name="gvsigJar" location="${extensionsDir}/${mainplugin}/lib/${mainplugin}.jar"/>
25
	<!--<property name="compile-classpath" value="${andamiJar}:${gvsigJar}:${andamiLibs}/beans.jar:${andamiLibs}/castor-0.9.5.3-xml.jar:${fmapLibs}/cms.jar:${fmapLibs}/driver-manager-1.1.jar:${fmapJar}:${fmapLibs}/gdbms-0.8-SNAPSHOT.jar:${fmapLibs}/geoapi-2.0.jar:${fmapLibs}/gt2-main.jar:${fmapLibs}/gvsig-exceptions.jar:${lib}/gt2-wfs.jar:${andamiLibs}/iver-utiles.jar:${fmapLibs}/jts-1.7.jar:${andamiLibs}/log4j-1.2.8.jar:${fmapLibs}/remote-clients.jar:${fmapLibs}/units-0.01.jar" />-->
26 25

  
27 26

  
28 27
  <target name="init">
......
99 98
		<copy todir="${dist}">
100 99
			<fileset dir="config" includes="text*.properties"/>
101 100
		</copy>
102
		<!--<copy todir="${dist}/images">
103
			<fileset dir="images/" includes="*"/>
104
		</copy>-->
105 101
	</target>
106 102

  
107 103
	<target name="copy-libs">
......
126 122
		<delete dir="${dist}"/>
127 123
		<delete dir="${build}"/>
128 124
	</target>
125

  
126
	<target name="run-tests" depends="batch-build,compile-tests">
127
		<antcall target="generic-run-tests">
128
			<param name="TestSuite.Name" value="com.iver.cit.gvsig.wcs.AllTests"/>
129
		</antcall>
130
	</target>
129 131
</project>
130 132

  
trunk/extensions/extWCS/.classpath
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3 3
	<classpathentry kind="src" path="src"/>
4
	<classpathentry kind="src" path="src-test"/>
4 5
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5 6
	<classpathentry kind="lib" path="/_fwAndami/lib/iver-utiles.jar"/>
6 7
	<classpathentry kind="lib" path="/_fwAndami/lib/log4j-1.2.8.jar"/>
......
12 13
	<classpathentry kind="lib" path="/libFMap/lib/driver-manager-1.1.jar"/>
13 14
	<classpathentry kind="src" path="/_fwAndami"/>
14 15
	<classpathentry kind="lib" path="/_fwAndami/lib/tempFileManager.jar"/>
15
	<classpathentry sourcepath="/libGDBMS" kind="lib" path="/libFMap/lib/gdbms-0.8-SNAPSHOT.jar"/>
16
	<classpathentry kind="lib" path="/libFMap/lib/gdbms-0.8-SNAPSHOT.jar" sourcepath="/libGDBMS"/>
16 17
	<classpathentry kind="lib" path="/libFMap/lib/jgdal-0.6.1.jar"/>
17
	<classpathentry sourcepath="/extRasterTools-SE" kind="lib" path="/libFMap/lib/org.gvsig.fmap.raster.jar"/>
18
	<classpathentry sourcepath="/libRemoteServices" kind="lib" path="/libFMap/lib/remote-clients.jar"/>
18
	<classpathentry kind="lib" path="/libFMap/lib/org.gvsig.fmap.raster.jar" sourcepath="/extRasterTools-SE"/>
19
	<classpathentry kind="lib" path="/libFMap/lib/remote-clients.jar" sourcepath="/libRemoteServices"/>
19 20
	<classpathentry kind="lib" path="/_fwAndami/lib/org.gvsig.ui.jar"/>
20 21
	<classpathentry kind="lib" path="/libFMap/lib/org.cresques.cts.jar"/>
21 22
	<classpathentry kind="lib" path="/libFMap/lib/org.gvsig.exceptions.jar"/>
22 23
	<classpathentry kind="lib" path="/libFMap/lib/org.gvsig.raster.jar"/>
24
	<classpathentry kind="var" path="JUNIT_HOME/junit.jar" sourcepath="ECLIPSE_HOME/plugins/org.eclipse.jdt.source_3.1.1/src/org.junit_3.8.1/junitsrc.zip"/>
23 25
	<classpathentry kind="output" path="bin"/>
24 26
</classpath>
trunk/extensions/extWCS/src-test/com/iver/cit/gvsig/wcs/AllTests.java
1
package com.iver.cit.gvsig.wcs;
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 com.iver.cit.gvsig.wcs");
10
		//$JUnit-BEGIN$
11

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

  
16
}
0 17

  

Also available in: Unified diff