Package org.moresbycoffee.have.domain

Examples of org.moresbycoffee.have.domain.Scenario


        }

    }

    void runScenario(final Object testObject, final InputStream scenarioIs) throws IOException, MByHaveException {
        final Scenario scenario = parseScenario(scenarioIs);
        processScenario(testObject, scenario);
    }
View Full Code Here


            if (parseDescription) {
                throw new MByHaveException("The scenario description does not contain any step description"); //TODO get the scenario description from somewhere.
            }
            steps.add(scenarioBuilder.toString());
        }
        return new Scenario(scenarioDescription, steps);
    }
View Full Code Here

TOP

Related Classes of org.moresbycoffee.have.domain.Scenario

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.