Package com.asakusafw.trace.model

Examples of com.asakusafw.trace.model.Tracepoint


     */
    @Test
    public void around() throws Exception {
        trace(new TraceSetting[] {
                new TraceSetting(
                        new Tracepoint(SimpleFlowpart.class.getName(), "create", PortKind.INPUT, "in"),
                        mode, attr()),
                new TraceSetting(
                        new Tracepoint(SimpleFlowpart.class.getName(), "create", PortKind.OUTPUT, "out"),
                        mode, attr()),
        });
        TestInput<Model> in = tester.input(Model.class, "in");
        prepare(in);

View Full Code Here


     */
    @Test
    public void inner() throws Exception {
        trace(new TraceSetting[] {
                new TraceSetting(
                        new Tracepoint(SimpleOperator.class.getName(), "line", PortKind.INPUT, "model"),
                        mode, attr()),
                new TraceSetting(
                        new Tracepoint(SimpleOperator.class.getName(), "line", PortKind.OUTPUT, "out"),
                        mode, attr()),
        });
        TestInput<Model> in = tester.input(Model.class, "in");
        prepare(in);

View Full Code Here

TOP

Related Classes of com.asakusafw.trace.model.Tracepoint

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.