黄瓜:“给予”步骤必须测试一些东西
我正在将测试改写为 Cucumber,但我仍然必须使用一些用户提供的信息(即运行测试所针对的帐户):
Given a valid account
When I ...
Then I ...
因此,我必须在“给定”期间检查所提供帐户的有效性。 " 步骤,如果无效则使场景失败。这样做的正确方法是什么?
I'm reworking my tests into Cucumber, but I must still use some user-provided information (namely, an account that the tests should be run against):
Given a valid account
When I ...
Then I ...
Because of this, I must check the validity of the provided account during the "Given" step, and fail the scenario if it's invalid. What would be the correct way of doing so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我见过的常见方法是在临时环境中运行,您可以在其中模拟有效用户。因此,在您的
Given
步骤中,您应该创建一个新的有效用户。然后运行其余的测试并在测试退出后删除用户。The usual way I've seen of going about this is to run in a temporary environment where you can mock a valid user. So in your
Given
step you should create a new, valid user. Then run the rest of your test and remove the user after the test exits.