Package com.asakusafw.testdriver.inprocess.MockHadoopJob

Examples of com.asakusafw.testdriver.inprocess.MockHadoopJob.Callback


     * Test method for executing Hadoop job with errors.
     */
    @Test
    public void executeJob_error() {
        prepareJobflow();
        MockHadoopJob.callback(new Callback() {
            @Override
            public int run(String[] args, Configuration conf) throws Exception {
                throw new InterruptedException();
            }
        });
View Full Code Here

TOP

Related Classes of com.asakusafw.testdriver.inprocess.MockHadoopJob.Callback

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.