Revision 11178 trunk/libraries/libGPE-GML/src-test/org/gvsig/gpe/gml/readers/GMLReaderBaseTest.java

View differences:

GMLReaderBaseTest.java
2 2

  
3 3
import java.io.File;
4 4

  
5
import org.gvsig.gpe.readers.GPEReaderBaseTest;
6

  
5 7
import junit.framework.TestCase;
6 8

  
7 9
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
......
48 50
 *
49 51
 * $Id$
50 52
 * $Log$
51
 * Revision 1.1  2007-04-12 10:24:12  jorpiell
53
 * Revision 1.2  2007-04-13 07:17:57  jorpiell
54
 * Add the writting tests for the simple geometries
55
 *
56
 * Revision 1.1  2007/04/12 10:24:12  jorpiell
52 57
 * Add the GML and schema tests
53 58
 *
54 59
 *
......
57 62
 * All the GML tests must inherit this class. 
58 63
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
59 64
 */
60
public abstract class GMLReaderBaseTest extends TestCase {
61

  
62
	public void testParseFile(){
63
		File file = new File(getFile());
64

  
65
	}
65
public abstract class GMLReaderBaseTest extends GPEReaderBaseTest {
66 66
	
67 67
	/**
68
	 * Gets the GML file to open
69
	 * @return
70
	 */
71
	public abstract String getFile();
72
	
73
	/**
74
	 * Return the numbre of features
75
	 * @return
76
	 */
77
	public abstract int getNumFeatures();
78
		
79
	/**
80 68
	 * Return if the GML has a schema
81 69
	 * @return
82 70
	 */
83 71
	public abstract boolean hasSchema();
84
	
85
	/**
86
	 * Compare the feature number i
87
	 * @param i
88
	 */
89
	public abstract void compareFeature(int i);
72

  
90 73
}

Also available in: Unified diff