1 /*2 * TestSchemaReadWrite.java3 *4 * Created on November 14, 2005, 5:19 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.schema.model.readwrite;11 12 import org.netbeans.modules.xml.schema.model.visitor.SchemaVisitor;13 14 /**15 *16 * @author nn13668217 */18 public interface TestSchemaReadWrite {19 String getSchemaResourcePath();20 /**21 * Test reading in the schema specified by #getSchemaResourcePath.22 * Verifying the resulted model using a visitor or 23 * FindSchemaComponentFromDOM#findComponent method.24 */25 void testRead() throws Exception ;26 27 //void testFidelity() throws Exception;28 29 /**30 * Reconstruct the schema pointed by #getSchemaResourcePath from empty schema.31 */32 void testWrite() throws Exception ;33 }34