Allure Jbehave Reporter

This reporter allows to generate allure xml reports after Jbehave test execution. (Scenario -> Test)

License

License

GroupId

GroupId

io.tapack
ArtifactId

ArtifactId

allure-jbehave-reporter
Last Version

Last Version

0.1
Release Date

Release Date

Type

Type

jar
Description

Description

Allure Jbehave Reporter
This reporter allows to generate allure xml reports after Jbehave test execution. (Scenario -> Test)
Project URL

Project URL

https://github.com/tapack/allure-jbehave-reporter
Source Code Management

Source Code Management

https://github.com/tapack/allure-jbehave-reporter

Download allure-jbehave-reporter

How to add to project

<!-- https://jarcasting.com/artifacts/io.tapack/allure-jbehave-reporter/ -->
<dependency>
    <groupId>io.tapack</groupId>
    <artifactId>allure-jbehave-reporter</artifactId>
    <version>0.1</version>
</dependency>
// https://jarcasting.com/artifacts/io.tapack/allure-jbehave-reporter/
implementation 'io.tapack:allure-jbehave-reporter:0.1'
// https://jarcasting.com/artifacts/io.tapack/allure-jbehave-reporter/
implementation ("io.tapack:allure-jbehave-reporter:0.1")
'io.tapack:allure-jbehave-reporter:jar:0.1'
<dependency org="io.tapack" name="allure-jbehave-reporter" rev="0.1">
  <artifact name="allure-jbehave-reporter" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.tapack', module='allure-jbehave-reporter', version='0.1')
)
libraryDependencies += "io.tapack" % "allure-jbehave-reporter" % "0.1"
[io.tapack/allure-jbehave-reporter "0.1"]

Dependencies

compile (2)

Group / Artifact Type Version
org.jbehave : jbehave-core jar 3.9.3
ru.yandex.qatools.allure : allure-java-adaptor-api jar 1.4.23

test (1)

Group / Artifact Type Version
junit : junit jar 4.12

Project Modules

There are no modules declared in this project.

release Maven Central

Allure JBehave Reporter

This reporter allows to generate allure xml reports after JBehave test execution. (Scenario -> Test)

Is other mapping:

  • Story -> Allure Test Suite
  • Scenario -> Allure Test Case
  • Step -> Allure Step
  • Scenario with Examples -> Allure Test Cases

Usage

Simply add allure-jbehave-reporter as dependency to your project and add it to your JBehave configuration.

Example

public class BaseStory extends JUnitStory {

    @Override
    public Configuration configuration() {
        if (super.hasConfiguration()) {
            return super.configuration();
        }
        return new MostUsefulConfiguration()
                .useStoryReporterBuilder(new StoryReporterBuilder()
                        .withDefaultFormats()
                        .withFormats(CONSOLE)
                        .withReporters(new AllureReporter()));
    }

}
io.tapack

Versions

Version
0.1