如何覆盖columnFicture中的某些数据?
我的 ColumnFicture 测试表如下所示:
|categoryId|subcategoryId|showResults?|
| 2 | 1 | |
如果子类别大于 0,我会在我的小说代码 (C#) 中覆盖categoryId (2)。是否可以在fitnesse 测试网站上覆盖categoryId?每个人都可以看到发生了什么。
my ColumnFicture test table look like this:
|categoryId|subcategoryId|showResults?|
| 2 | 1 | |
I overwrite in my ficture code (C#) categoryId (2) if subcategory is more than 0. Is that possible overwrite categoryId on fitnesse test site? That evry one can see what happend.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以,从您的装置代码中您无法更改 FitNesse wiki 中的测试。 wiki 中的测试被渲染为 HTML,传递给 FitServer,解析为树结构,传递给可以修改树的装置,然后渲染为测试结果 HTML。因此,您的装置距离管道太远,无法访问原始的 wiki 测试源。
No, from your fixture code you can not change the test in the FitNesse wiki. A test in the wiki is rendered into HTML, passed to a FitServer, parsed into a tree structure, passed to your fixture which can modify the tree, and then rendered into the test result HTML. So your fixture is too far down the pipeline to access the original wiki test source.