Package com.asakusafw.testdriver.core

Examples of com.asakusafw.testdriver.core.VerifyContext.testFinished()


                LOG.info("ジョブフローを実行しています: {}#{}",
                        batchDescriptionClass.getName(), flowId);
                VerifyContext verifyContext = new VerifyContext(driverContext);
                executor.runJobflow(jobflowInfo);
                verifyContext.testFinished();

                LOG.info("ジョブフローの実行結果を検証しています: {}#{}",
                        batchDescriptionClass.getName(), flowId);
                executor.verify(jobflowInfo, verifyContext, tester.outputs);
            }
View Full Code Here


        executor.prepareOutput(jobflowInfo, outputs);

        LOG.info("フロー部品を実行しています: {}", flowDescription.getClass().getName());
        VerifyContext verifyContext = new VerifyContext(driverContext);
        executor.runJobflow(jobflowInfo);
        verifyContext.testFinished();

        // 実行結果の検証
        LOG.info("実行結果を検証しています: {}", driverContext.getCallerClass().getName());
        executor.verify(jobflowInfo, verifyContext, outputs);
    }
View Full Code Here

        executor.prepareOutput(jobflowInfo, outputs);

        LOG.info("ジョブフローを実行しています: {}", jobFlowDescriptionClass.getName());
        VerifyContext verifyContext = new VerifyContext(driverContext);
        executor.runJobflow(jobflowInfo);
        verifyContext.testFinished();

        LOG.info("実行結果を検証しています: {}", driverContext.getCallerClass().getName());
        executor.verify(jobflowInfo, verifyContext, outputs);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.