Package com.technophobia.substeps.execution.node

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


        stepImplementationClasses.add(TestStepImplementations.class);
        stepImplementationClasses.add(TestInitialisationClass.class);

        theConfig.setStepImplementationClasses(stepImplementationClasses);

        final RootNode rootNode = runner.prepareExecutionConfig(theConfig);

        System.out.println("rootNode:\n" +
        rootNode.toDebugString());
    }
View Full Code Here


    }

    private RootNode createRootNode() {

        return new RootNode("Description", Collections.singletonList(createFeature(FEATURE_NAME, "test file")));
    }
View Full Code Here

                features.add(featureNode);
            }
        }

        return new RootNode(description, features);
    }
View Full Code Here

public class ReportDataTest {

    @Ignore("work in progress")
    @Test
    public void testCounts() {
        final RootNode root = new RootNode("Description", Collections.<FeatureNode> emptyList());

        final ReportData data = new ReportData();
        data.addRootExecutionNode(root);

        final ExecutionStats stats = new ExecutionStats();
View Full Code Here

TOP

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

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.