Skip to content

agilarity/jbehave-stories

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stories in Ready Build Status

This project provides a useful base class for running JBehave test scenarios.

Usage:

1 - Add dependency.

<dependency>
    <groupId>com.agilarity</groupId>
    <artifactId>jbehave-stories</artifactId>
    <version>1.0.7</version>
</dependency>

2 - Specify the steps in your test class.

public class SmokeTest extends JBehaveStories {

    @Override
    protected List<?> createSteps() {
        return Arrays.asList(new SmokeTestSteps());
    }
}

3 - Put your story files under src/test/resources, at or below the same package as your test class.

4 - Run your test class as a normal JUnit test.

About

Make it easier to setup and run JBehave tests

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages