Package org.jbehave.examples.core.stories

Source Code of org.jbehave.examples.core.stories.Lifecycle

package org.jbehave.examples.core.stories;

import org.jbehave.core.steps.InjectableStepsFactory;
import org.jbehave.core.steps.InstanceStepsFactory;
import org.jbehave.examples.core.CoreStory;
import org.jbehave.examples.core.steps.BankAccountSteps;
import org.jbehave.examples.core.steps.BeforeAfterSteps;

public class Lifecycle extends CoreStory {

  @Override
    public InjectableStepsFactory stepsFactory() {
        return new InstanceStepsFactory(configuration(), new BankAccountSteps(), new BeforeAfterSteps());
  }

}
TOP

Related Classes of org.jbehave.examples.core.stories.Lifecycle

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.