Package org.apache.vxquery.xtest.util.tests

Examples of org.apache.vxquery.xtest.util.tests.IDiskTest


            for (int r = 0; r < repeat; ++r) {
                try {
                    if (threads > 1) {
                        runThreadTest(testClass, dp, threads, bufferSize);
                    } else {
                        IDiskTest test = testClass.newInstance();
                        test.setFile(dp.getNextFile());
                        test.setBufferSize(bufferSize);
                        test.setParser(dp.parser);
                        test.run();
                    }
                } catch (InstantiationException e) {
                    e.printStackTrace();
                } catch (IllegalAccessException e) {
                    e.printStackTrace();
View Full Code Here

TOP

Related Classes of org.apache.vxquery.xtest.util.tests.IDiskTest

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.