Package org.jibx.binding.generator

Source Code of org.jibx.binding.generator.GeneratorSuite

package org.jibx.binding.generator;

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

public class GeneratorSuite extends TestCase
{
    public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(BindingGeneratorCommandLineTest.class);
        suite.addTestSuite(ClassCustomTest.class);
        suite.addTestSuite(GeneratorTest.class);
        suite.addTestSuite(NestingBaseTest.class);
        return suite;
    }
}
TOP

Related Classes of org.jibx.binding.generator.GeneratorSuite

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.