Package org.jibx.schema.codegen

Source Code of org.jibx.schema.codegen.CodegenSuite

package org.jibx.schema.codegen;

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

public class CodegenSuite extends TestCase
{
    public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(UsageVisitorTest.class);
        suite.addTestSuite(TypeReplacementTest.class);
        suite.addTestSuite(CodeGenerationTest.class);
        return suite;
    }
}
TOP

Related Classes of org.jibx.schema.codegen.CodegenSuite

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.