Cucumber options annotation

前端 未结 3 1555
粉色の甜心
粉色の甜心 2020-12-29 06:48

The cucumber-jvm javadocs states that purpose of the glue element is to specify the location of the stepdefinitions and hooks. However, this doesn\'t seem to work for me. Le

3条回答
  •  悲&欢浪女
    2020-12-29 06:51

    I had this problem too... and so far it seems to be that:

    "features" is looking for a filesystem path:

    features = "src/foo/bar"
    

    whereas "glue" is looking for a package name:

    glue = "foo.bar"
    

    Not sure why they are different, but this seems to be working for me.

提交回复
热议问题