Package com.technophobia.substeps.execution.node

Examples of com.technophobia.substeps.execution.node.SubstepNode


            substeps.add(buildStepNode(scenarioDescription, step, subStepsMapLocal, parent, parametersForSteps,
                    throwExceptionIfUnableToBuildMethodArgs, tags, depth + 1));

        }

        return new SubstepNode(substeps, tags, depth);
    }
View Full Code Here


            throw new SubstepsConfigurationException(msg);

        }

        final SubstepNode substepNode = build(scenarioDescription, substepsParent.getSteps(), subStepsMapLocal,
                substepsParent, parametersForSubSteps, throwExceptionIfUnableToBuildMethodArgs, tags, depth);
     // Change TPCLA-299
     //  substepNode.setLine(substepsParent.getParent().getParameterLine());
       substepNode.setLine(step.getLine());
        substepNode.setFileUri(substepsParent.getSubStepFileUri());
        substepNode.setLineNumber(substepsParent.getSourceLineNumber());
        return substepNode;
    }
View Full Code Here

        if (scenario.getTags() != null) {

            allTags.addAll(scenario.getTags());
        }

        SubstepNode background = scenario.hasBackground() ? substepNodeBuilder.build(scenario.getDescription(),
                scenario.getBackground().getSteps(), parameters.getSyntax().getSubStepsMap(), null, scenarioParameters,
                true, allTags, depth + 1) : null;

        List<StepNode> steps = Lists.newArrayList();
View Full Code Here

TOP

Related Classes of com.technophobia.substeps.execution.node.SubstepNode

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.