Package com.asakusafw.compiler.flow.example

Examples of com.asakusafw.compiler.flow.example.TwinCogroupStage


        Ex1 ex1 = new Ex1();
        ex1.setStringAsString("Hello");
        ex1.setValue(100);
        in.add(ex1);

        boolean result = tester.runFlow(new TwinCogroupStage(in.flow(), out.flow()));
        assertThat(result, is(true));

        List<Ex1> outputs = out.toList();
        assertThat(outputs.size(), is(1));
        assertThat(outputs.get(0).getValue(), is(200));
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.flow.example.TwinCogroupStage

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.