Package org.jibx.schema.elements

Source Code of org.jibx.schema.elements.ElementsSuite

package org.jibx.schema.elements;

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

public class ElementsSuite extends TestCase
{
    public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(EmptySchema.class);
        suite.addTestSuite(Annotations.class);
        suite.addTestSuite(SimpleGlobals.class);
        suite.addTestSuite(SimpleComplexTypes.class);
        suite.addTestSuite(SimpleSimpleTypes.class);
        suite.addTestSuite(SimpleGroups.class);
        return suite;
    }
}
TOP

Related Classes of org.jibx.schema.elements.ElementsSuite

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.