如何使用 c# Fitnesse+Slim 在 Fitnesse 测试中保持状态
如何指定每个测试用例中使用的数据?
即我希望使用一个表来设置一些数据,然后针对该数据运行一系列测试。
谢谢
How do I specify data to be used in each of my test cases?
i.e. I wish to use one table to setup some data and then run a bunch of tests against that data.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我一直在查看 Gojko ,他们的建议是创建一个您在以下位置调用的单例测试页的开头。下面是 FitNesse 编辑的一个示例:
我的 C# 代码(SUT -> 被测系统是一个基本的单例:
我正在测试的其他类使用该单例来获取数据。
我希望有所帮助。
I've been looking at Gojko and their suggestion is to create a singleton that you invoke at the beginning of your test page. Here's an example of the FitNesse edit:
And my C# code (SUT -> System Under Test is a basic Singleton:
My other classes that I'm testing use that singleton to get their data.
I hope that helps.