Package uk.org.ogsadai.activity

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


        MockInputPipe inputLanguage = new MockInputPipe("jruby");
        activity.addInput(GenericActivity.INPUT_LANGUAGE, inputLanguage);
        MockOutputPipe output = new MockOutputPipe(new Object[] {5l});
        activity.addOutput("output", output);
        activity.process();
        output.verify();
    }

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


        MockInputPipe inputName = new MockInputPipe("Amy");
        activity.addInput("input", inputName);
        MockOutputPipe output = new MockOutputPipe(new Object[] {"Amy"});
        activity.addOutput("output", output);
        activity.process();
        output.verify();
    }

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

                              "Hello Ally, hello 1.0!",
                              "Hello Radek, hello 2.0!"});
        activity.addOutput(StringReplaceActivity.OUTPUT_RESULT, output);
       
        activity.process();
        output.verify();
       
    }
   
    @Test
    public void testUnknownColumn() 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.