Package org.jibx.runtime

Source Code of org.jibx.runtime.RuntimeSuite

package org.jibx.runtime;

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

public class RuntimeSuite extends TestCase
{
    public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(UtilityTest.class);
        suite.addTestSuite(WhitespaceConversionsTest.class);
        suite.addTestSuite(JodaConvertTest.class);
        suite.addTestSuite(JiBXConstrainedParseExceptionTest.class);
        return suite;
    }
}
TOP

Related Classes of org.jibx.runtime.RuntimeSuite

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.