1 /*2 * TestReadWrite.java3 *4 * Created on December 1, 2005, 4:59 PM5 *6 * To change this template, choose Tools | Template Manager7 * and open the template in the editor.8 */9 10 package org.netbeans.modules.xml.wsdl.model.readwrite;11 12 /**13 *14 * @author Nam Nguyen15 */16 public interface TestReadWrite {17 String 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 ;24 25 //void testFidelity() throws Exception;26 27 /**28 * Reconstruct the schema pointed by #getSchemaResourcePath from empty schema.29 */30 void testWrite() throws Exception ;31 32 }33