Package uk.org.ogsadai.activity

Examples of uk.org.ogsadai.activity.MockInputPipe.verify()


        MockInputPipe input = new MockInputPipe(new Object[] {
            script
        });
        activity.addInput(GenericActivity.INPUT_SCRIPT, input);
        activity.process();
        input.verify();
    }

    @Test
    public void testOneInputNoOutput() throws Exception
    {
View Full Code Here


        activity.addInput(GenericActivity.INPUT_LANGUAGE, inputLanguage);
        MockInputPipe inputName = new MockInputPipe("Amy");
        activity.addInput("name", inputName);
        activity.process();
        inputScript.verify();
        inputName.verify();
    }
   
    @Test
    public void testNoInputOneOutput() throws Exception
    {
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.