我尝试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 实现?
谢谢