Package org.jbehave.examples.core

Source Code of org.jbehave.examples.core.CoreStoriesFailingUponPending

package org.jbehave.examples.core;

import static org.jbehave.core.io.CodeLocations.codeLocationFromClass;

import java.util.List;

import org.jbehave.core.configuration.Configuration;
import org.jbehave.core.failures.FailingUponPendingStep;
import org.jbehave.core.io.StoryFinder;

/**
*/
public class CoreStoriesFailingUponPending extends CoreStories {

  public Configuration configuration() {
    return super.configuration()          
          .usePendingStepStrategy(new FailingUponPendingStep());
  }

    @Override
    protected List<String> storyPaths() {
        String filter = System.getProperty("story.filter", "**/pending.story");
        return new StoryFinder().findPaths(codeLocationFromClass(this.getClass()), filter, "");
    }

}
TOP

Related Classes of org.jbehave.examples.core.CoreStoriesFailingUponPending

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.