ColumnFixture 变量错误

发布于 2024-12-02 03:41:28 字数 286 浏览 1 评论 0原文

FitNesse 中的列固定装置中的 >>variableName<< 格式的变量存在一些问题。使用的语言是 C#。这些错误与最近解决的解析器错误问题非常相似。如果有人对如何解决该问题有任何建议或解决方案,那就太好了。

具体问题是表中存在非法字符。这种格式的变量不会转换为其特定值...它们以 >>varName<< 的形式传递,其中包含 >><< 包括在内。

Having some issues with variables of format >>variableName<< within column fixtures in FitNesse. The language being used is C#. These errors are very similar to the parser error issue that was resolved recently. If anyone has any suggestions on how to go about solving the issue, or a resolution that would be great.

The specific issue is illegal characters in the table. variables in this format are not translated to their specific values... they are passed through as >>varName<<, with >> and << included.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三岁铭 2024-12-09 03:41:28

变量名称不起作用,请尝试以下示例。

首先使用输入参数 AccountNumber 和 CreditLimit 以及输出参数 CaseNumber 创建一个列固定装置“ShouldIncreaseCustomerCreditLimit”。
然后创建“ShouldLoadCaseDetailsByCaseNumber”列固定装置,该固定装置采用输入 CaseNumber 并输出 CreditLimit 和 AccountNumber。

在 wiki 中添加列夹具。

!|ShouldIncreaseCustomerCreditLimit          |
|AccountNumber      |CreditLimit|=CaseNumber?|
|0001011190301064616|1000       |>>casenumber|


!|ShouldLoadCaseDetailsByCaseNumber           |
|CaseNumber= |CreditLimit?|AccountNumber?     |
|<<casenumber|1000        |0001011190301064616|

希望这有帮助。

问候
拉斯廷

The variable names wont work, instead try the following as an example.

First create a column fixture 'ShouldIncreaseCustomerCreditLimit' with input parameters AccountNumber and CreditLimit and output param CaseNumber.
Then create 'ShouldLoadCaseDetailsByCaseNumber' column fixture that takes input CaseNumber and output CreditLimit and AccountNumber.

In the wiki add the column fixture.

!|ShouldIncreaseCustomerCreditLimit          |
|AccountNumber      |CreditLimit|=CaseNumber?|
|0001011190301064616|1000       |>>casenumber|


!|ShouldLoadCaseDetailsByCaseNumber           |
|CaseNumber= |CreditLimit?|AccountNumber?     |
|<<casenumber|1000        |0001011190301064616|

Hope this helps.

Regards
Rustin

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文