用于端到端测试的模拟注入器/期望设置接口该如何命名?
我正在我们的系统中编写一个接口,该接口将允许端到端测试更改服务器的行为,以便运行各种自动化测试场景。
该接口仅在测试模式下启用。
诸如此类的事情; 鉴于预订服务已关闭 当我尝试预订交易时 然后我看到预订失败消息,
我在以前的项目中做过此类事情,但从未见过用于设置这些场景的服务器端测试服务的“好”(简洁、描述性)名称。
到目前为止,我拥有的最好的名字是 MockInjector、TestSetupInjector、ServerTwiddler。
有没有更标准的名字?
I am writing an interface into our system that will allow end to end tests to change the behaviour of the server in order to run through various automated test scenarios.
This interface will only be enabled in test-mode.
Things like;
Given the booking service is down
When I try book a trade
Then I see the booking failure message
I have done this sort of thing on previous projects but have never seen a 'nice' (concise, descriptive) name for the server-side testing service you use to set up these scenarios.
The best names I have so far are MockInjector, TestSetupInjector, ServerTwiddler.
Is there a more standard name out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用的标准术语是 测试挂钩
The standard terminology used is Test Hook