Package com.asakusafw.compiler.trace.testing

Examples of com.asakusafw.compiler.trace.testing.SimpleFlowpart


    public void normal() throws Exception {
        TestInput<Model> in = tester.input(Model.class, "in");
        prepare(in);

        TestOutput<Model> out = tester.output(Model.class, "out");
        assertThat(tester.runFlow(new SimpleFlowpart(in.flow(), out.flow())), is(true));
        verify(out);
    }
View Full Code Here


        });
        TestInput<Model> in = tester.input(Model.class, "in");
        prepare(in);

        TestOutput<Model> out = tester.output(Model.class, "out");
        assertThat(tester.runFlow(new SimpleFlowpart(in.flow(), out.flow())), is(true));
        verify(out);
    }
View Full Code Here

        });
        TestInput<Model> in = tester.input(Model.class, "in");
        prepare(in);

        TestOutput<Model> out = tester.output(Model.class, "out");
        assertThat(tester.runFlow(new SimpleFlowpart(in.flow(), out.flow())), is(true));
        verify(out);
    }
View Full Code Here

        });
        TestInput<Model> in = tester.input(Model.class, "in");
        prepare(in);

        TestOutput<Model> out = tester.output(Model.class, "out");
        assertThat(tester.runFlow(new SimpleFlowpart(in.flow(), out.flow())), is(true));
        verify(out);
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.trace.testing.SimpleFlowpart

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.