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);
}