我怎样才能“全部折叠”? TGUITestRunner 中的节点?
DUnit 提供了上下文菜单项“全部展开”和“隐藏测试节点”。然而,在我的测试项目中,选择后一个选项仍然会使许多测试套件层次结构节点保持打开状态。仅隐藏最后一层的测试节点。是否有一个秘密密钥可以折叠所有节点,或者除了最高级别之外的所有节点?
DUnit offers a context menu item "Expand all" and "Hide Test Nodes". In my test projects however, choosing the latter option still leaves very many test suite hierarchy nodes open. Only the test nodes on the last level are hidden. Is there a secret key which collapses all nodes, or all but the highest level?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前还没有任何内置功能可以通过“密钥”等来启用。
您必须修改 DUnit 源才能实现此目的。查看 GUITestRunner 并将一个项目添加到调用 TestTree.FullCollapse 的
pmTestTree
弹出菜单中。There is nothing built in already that can be enabled with a "secret key" or suchlike.
You have to modify the DUnit source to achieve this. Look in
GUITestRunner
and add an item to thepmTestTree
popup menu which callsTestTree.FullCollapse
.