Package xbird.client

Examples of xbird.client.InteractiveShell


    }

    //@Test(dataProvider = "queries", invocationCount = 10, threadPoolSize = 5)
    public void scenario_itr10_pool5(String queryFile, String outFile) throws XQueryException {
        String[] args = new String[] { "-t", "-q", queryFile, "-o", outFile };
        new InteractiveShell().run(args);
    }
View Full Code Here


    }

    //@Test(dataProvider = "queries", invocationCount = 50, threadPoolSize = 25)
    public void scenario_itr50_pool25(String queryFile, String outFile) throws XQueryException {
        String[] args = new String[] { "-t", "-q", queryFile, "-o", outFile };
        new InteractiveShell().run(args);
    }
View Full Code Here

    }

    //@Test(dataProvider = "queries", invocationCount = 100, threadPoolSize = 30)
    public void scenario_itr50_pool10(String queryFile, String outFile) throws XQueryException {
        String[] args = new String[] { "-t", "-q", queryFile, "-o", outFile };
        new InteractiveShell().run(args);
    }
View Full Code Here

    }

    //@Test(dataProvider = "queries", invocationCount = 2, threadPoolSize = 2)
    public void scenario_itr1_pool1(String queryFile, String outFile) throws XQueryException {
        String[] args = new String[] { "-t", "-q", queryFile, "-o", outFile };
        new InteractiveShell().run(args);
    }
View Full Code Here

    }

    //@Test(dataProvider = "queries", invocationCount = 180, threadPoolSize = 60)
    public void scenario_itr100_pool30(String queryFile, String outFile) throws XQueryException {
        String[] args = new String[] { "-t", "-q", queryFile, "-o", outFile };
        new InteractiveShell().run(args);
    }
View Full Code Here

                        String test = FileUtils.basename(testfilename) + "#" + nth;
                        //String[] args = new String[] { "-q", testfilename, "-o", OUTPUT_DEST + test };
                        String[] args = new String[] { "-q", testfilename, "-o", "/dev/null" };
                        StopWatch sw = new StopWatch("elapsed time of " + test);
                        try {
                            new InteractiveShell().run(args);
                        } catch (XQueryException e) {
                            Assert.fail("failed " + test, e);
                        }
                        System.out.println(sw);
                    }
View Full Code Here

    }

    //@Test(dataProvider = "queries", invocationCount = 10, threadPoolSize = 5)
    public void scenario_itr10_pool5(String queryFile, String outFile) throws XQueryException {
        String[] args = new String[] { "-t", "-q", queryFile, "-o", outFile };
        new InteractiveShell().run(args);
    }
View Full Code Here

    }

    //@Test(dataProvider = "queries", invocationCount = 50, threadPoolSize = 25)
    public void scenario_itr50_pool25(String queryFile, String outFile) throws XQueryException {
        String[] args = new String[] { "-t", "-q", queryFile, "-o", outFile };
        new InteractiveShell().run(args);
    }
View Full Code Here

    }

    //@Test(dataProvider = "queries", invocationCount = 100, threadPoolSize = 30)
    public void scenario_itr50_pool10(String queryFile, String outFile) throws XQueryException {
        String[] args = new String[] { "-t", "-q", queryFile, "-o", outFile };
        new InteractiveShell().run(args);
    }
View Full Code Here

    }

    //@Test(dataProvider = "queries", invocationCount = 2, threadPoolSize = 2)
    public void scenario_itr1_pool1(String queryFile, String outFile) throws XQueryException {
        String[] args = new String[] { "-t", "-q", queryFile, "-o", outFile };
        new InteractiveShell().run(args);
    }
View Full Code Here

TOP

Related Classes of xbird.client.InteractiveShell

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.