package com.overloop.automation.runners;

import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;

@RunWith(Cucumber.class)
@CucumberOptions(
        features = "src/test/resources/com.overloop.automation.features",
        glue = {"com.overloop.automation.stepdefs"},
        plugin = {"ru.yandex.qatools.allure.cucumberjvm.AllureReporter",
                "json",
                "json:target/cucumber.json"}
                )
public class CucumberTest {
}
