单独测试 ui 组件有意义吗?
我正在开发一个具有大约 15 个用户控件的 Web 表单,这些控件按上下文(评论、位置、成员/领导者等)分隔。 如果每个控件都可以单独呈现(使用真实或测试数据),那么有一个单独的“功能”测试页来单独测试它们是否有意义,或者是否有更好的方法?
I'm working on a webform that has about 15 user controls, separated by context (comments, locations, members/leaders, etc).
If each control can render individually (using real or test data), does it make sense to have a separate "functional" test page to test them in isolation or is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要进行浅层测试或者想要布局(即使用示例数据等),或者查看控件是否将提供的内容放置在正确的位置等等,那么这是有意义的,但是如果您想测试是否数据加载正确,然后单独测试每个控件将无法为您提供所需的全部内容。
It makes sense if you want to make a shallow test or if you want to the layout (i.e. with sample data etc.), or see if control places the provided content in the right place and so on, but if you want to test if the data loads properly, then test each control individually won't provide you all you need.