Package org.jibx.schema

Source Code of org.jibx.schema.SchemaSuite

package org.jibx.schema;

import org.jibx.schema.codegen.CodegenSuite;
import org.jibx.schema.elements.ElementsSuite;
import org.jibx.schema.elements.SchemaPaths;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class SchemaSuite extends TestCase
{
    public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTest(ElementsSuite.suite());
        suite.addTestSuite(SchemaPaths.class);
        suite.addTest(CodegenSuite.suite());
        return suite;
    }
}
TOP

Related Classes of org.jibx.schema.SchemaSuite

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.