Cucumber Runner Class没有运行Step Definitons

时间:2018-06-06 15:09:45

标签: java cucumber gherkin

我正在使用Cucumber和Java编写自动化测试。

我可以通过右键单击我的Feature文件并将其作为Cucumber Feature运行来运行步骤定义,并且所有步骤都成功通过。

但是,我需要使用Runner Class来运行它们。

我的功能文件位于此文件夹中:

  

的src /测试/ JAVA /特征

我的步骤定义在这个文件夹中:

  

SRC \测试\ java中\ COM \ ABC \商业\ DEF \自动化

My Runner Class也存储在

  

SRC \测试\ java中\ COM \ ABC \商业\ DEF \自动化

这是Runner类代码:

@RunWith(Cucumber.class)
@CucumberOptions(
    plugin = {"progress",
            "html:build/report/html",
            "junit:build/report/junit/cucumber-report.xml",
            "json:build/report/json/cucumber-report.json"
    },
    glue = {"src\\test\\java\\com\\abc\\commercial\\def\\automation"},
    features = {"src/test/java/features"}
    )
public class QARunner {

public static void main(String[] args) {
    // TODO Auto-generated method stub

    }
}

当我将Runner类作为JUnit Test运行时,我在控制台中收到以下响应:

UUUUUUUUU

Undefined scenarios:
src/test/java/features/US46052
src/test/java/features/postFeatures.feature:43 # As the

2 Scenarios (2 undefined)
9 Steps (9 undefined)
0m0.303s


You can implement missing steps with the snippets below:

@Given("the Application...")
public void the_Application...() {

所以步骤定义没有被提取。

它与我的测试运行器所在位置有关吗? 我认为它不会在自动化文件夹中找到步骤定义

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

试试这个:不需要主要方法。 glue选项应采用包式。

@RunWith(Cucumber.class)
@CucumberOptions(
    plugin = {"progress",
            "html:build/report/html",
            "junit:build/report/junit/cucumber-report.xml",
            "json:build/report/json/cucumber-report.json"
    },
    glue = {"com.abc.commercial.def.automation"},
    features = {"src/test/java/features"}
    )
public class QARunner {

}