Package com.asakusafw.compiler.flow.testing.model

Examples of com.asakusafw.compiler.flow.testing.model.Part2


        in.setSid(10L);
        in.setValue(100);
        f.add(in);

        assertThat(result.getResults().size(), is(1));
        Part2 out = result.getResults().get(0);
        assertThat(out.getSid(), is(10L));
        assertThat(out.getStringOption().isNull(), is(true));
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.flow.testing.model.Part2

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.