Package org.apache.jackrabbit.test

Examples of org.apache.jackrabbit.test.JCRTestSuite


* @author Horia Chiorean
*/
public final class JcrTckSuites {

    public static JCRTestSuite defaultSuite() {
        return new JCRTestSuite() {
            @Override
            public void run( TestResult result ) {
                try {
                    JTATestUtil.setJBossJTADefaultStoreLocations();
                    super.run(result);
View Full Code Here


    }

    public static TestSuite defaultSuiteInline() {
        return new TestSuite() {
            {
                for (Enumeration<Test> testsEnum = new JCRTestSuite().tests(); testsEnum.hasMoreElements();) {
                    addTest(testsEnum.nextElement());
                }
            }

            @Override
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.test.JCRTestSuite

Copyright © 2018 www.massapicom. 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.