如何在 Fitnesse 中抑制变量的 WikiWord 格式
我正在使用 ${varname}
语法在我的 Fitnesse 测试之一中引用环境变量,其形式为
| check | Project Name | ${PROJECT_NAME} |
大多数时候这工作正常,但有时环境变量的值是 (巧合的是)采用 WikiWord 格式,这会搞砸测试,因为 Fitnesse 将其视为页面链接:
| check | Project Name | MyTestProject[?] |
我尝试使用 !- -!
语法来抑制格式,但这会阻止变量正在解决。有没有办法在变量解析后抑制 wikiword 格式?
I am using the ${varname}
syntax to reference an environment variable in one of my Fitnesse tests, in the form of
| check | Project Name | ${PROJECT_NAME} |
Most of the time this works fine, but occasionally the value of the environment variable is (coincidentally) in WikiWord format, which screws up the test because Fitnesse is treating it as a page link:
| check | Project Name | MyTestProject[?] |
I've tried using the !- -!
syntax to suppress the formatting, but that prevents the variable from being resolved. Is there a way to suppress the wikiword formatting after the variable is resolved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将
!
添加到第一行的开头来使用文字表:You can use literal tables by adding
!
to the beginning of the first row: