1

我尝试file在 Gauge 规范中使用特殊参数。

Export a customer
----------------------------------------
* Find customer "Hans"
* Export customer to <file:/customer.xml>

这个的java实现看起来像这样

@Step("Export customer to <file>")
public void test(String file) {
   System.out.println("file " + file);
}

我假设参数 typ 是String(也可以是File?)

但是,尽管如此,运行它,返回

[ParseError] C:\Users\user\IdeaProjects\qmsgauge\specs\tenantManagement.spec:40 
 Dynamic parameter <file:/customer.xml> could not be resolved => 'Export customer to <file:/customers.xml>'
Successfully generated html-report to => C:\Users\user\IdeaProjects\qmsgauge\reports\html-report\index.html

如何在规范中定义文件参数以及如何为此编写 java 实现?

谢谢

4

1 回答 1

3

以“/”开头的路径假定它是根。如果使用相对路径,请不要以“/”开头

所以参数值可以是-file:specs/example.spec

于 2018-02-01T08:48:49.433 回答