Examples of FeatureOutput


Examples of org.moresbycoffee.mbyhave8.result.FeatureOutput

        assertEquals("Feature: Feature description", featureWith(successScenario()).execute(DummyHooks.DUMMY, Filter.EMPTY_FILTER).getDescription());
    }

    @Test
    public void feature_output_should_carry_the_underlying_scenario_outputs() {
        final FeatureOutput featureOutput = featureWith(successScenario()).execute(DummyHooks.DUMMY, Filter.EMPTY_FILTER);
        assertEquals(1, featureOutput.getScenarios().size());
        assertEquals(ScenarioResult.Success, featureOutput.getScenarios().iterator().next().getResult());
    }
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.