KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > xml > wsdl > model > readwrite > TestReadWrite


1 /*
2  * TestReadWrite.java
3  *
4  * Created on December 1, 2005, 4:59 PM
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

9
10 package org.netbeans.modules.xml.wsdl.model.readwrite;
11
12 /**
13  *
14  * @author Nam Nguyen
15  */

16 public interface TestReadWrite {
17     String JavaDoc getTestResourcePath();
18     /**
19      * Test reading in the schema specified by #getSchemaResourcePath.
20      * Verifying the resulted model using a visitor or
21      * FindSchemaComponentFromDOM#findComponent method.
22      */

23     void testRead() throws Exception JavaDoc;
24     
25     //void testFidelity() throws Exception;
26

27     /**
28      * Reconstruct the schema pointed by #getSchemaResourcePath from empty schema.
29      */

30     void testWrite() throws Exception JavaDoc;
31   
32 }
33
Popular Tags