Package com.technophobia.substeps.execution.node

Examples of com.technophobia.substeps.execution.node.RootNode.toDebugString()


        // TODO - checkfailures - test currently ignored anyway..
        final List<SubstepExecutionFailure> failures = new ArrayList<SubstepExecutionFailure>();
        final RootNode rootNode = runExecutionTest(feature, tags, substeps, notifier, failures);

        System.out.println("\n\n\n\n\n*************\n\n" + rootNode.toDebugString());

        // check the rootNode tree is in the state we expect
        Assert.assertThat(rootNode.getResult().getResult(), is(ExecutionResult.FAILED));

        final FeatureNode featureNode = rootNode.getChildren().get(0);
View Full Code Here


        theConfig.setStepImplementationClasses(stepImplementationClasses);

        final RootNode rootNode = runner.prepareExecutionConfig(theConfig);

        System.out.println("rootNode:\n" +
        rootNode.toDebugString());
    }

    @Test
    public void testSetupTearDownAndImplsAreCalledIfNotOnDryRun() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.