Package org.apache.xindice.core.filer

Examples of org.apache.xindice.core.filer.FilerTestBase


        // If the Berkeley filer was built in then test it too.
        try {
            Class filerClass = Class.forName("org.apache.xindice.core.filer.BerkeleyBTreeFiler");
            Filer filer = (Filer) filerClass.newInstance();
            suite.addTest(new FilerTestBase("BerkeleyFilerTestCase", filer));
        } catch (Exception e) {
            // If the class wasn't built just ignore it.
        }

        return suite;
View Full Code Here


        // If the Berkeley filer was built in then test it too.
        try {
            Class filerClass = Class.forName("org.apache.xindice.core.filer.BerkeleyBTreeFiler");
            Filer filer = (Filer) filerClass.newInstance();
            suite.addTest(new FilerTestBase("BerkeleyFilerTestCase", filer){});
        } catch (Exception e) {
            // If the class wasn't built just ignore it.
        }

        return suite;
View Full Code Here

        // If the Berkeley filer was built in then test it too.
        try {
            Class filerClass = Class.forName("org.apache.xindice.core.filer.BerkeleyBTreeFiler");
            Filer filer = (Filer) filerClass.newInstance();
            suite.addTest(new FilerTestBase("BerkeleyFilerTestCase", filer));
        } catch (Exception e) {
            // If the class wasn't built just ignore it.
        }

        return suite;
View Full Code Here

TOP

Related Classes of org.apache.xindice.core.filer.FilerTestBase

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.