如何在我自己的应用程序中使用cherrypy测试工具?
我可以找到调用测试工具的方法,但我不知道如何编写一个简单的测试用例。谢谢。
I can find the way to call the test harness, but I can't figure out how to write a simple test case. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我得到了一个简单的测试用例,但由于我们使用的是非标准路由方法,我发现我必须为每个测试用例显式地重新初始化全局cherrypy配置(在testharness错误地重新初始化它之后)。这里是:
”””
测试测试工具是否正常工作。
"""
test_assignment_web.setUp() 修复了cherrypy“tree”对象,使其在testharness破坏后正常工作。这个测试用例对我来说适用于TestHarness,如问题中给出的链接中所述。
Alright I got a simple test case working, but since we are using a non-standard routing method I discovered that I had to reinitialize the global cherrypy configuration explicitly for each test case (after the testharness reinitializes it incorrectly). Here it is:
"""
test that the test harness is working.
"""
test_assignment_web.setUp() fixes up the cherrypy "tree" object to work after the testharness breaks it. This test case works for me with the TestHarness as described in the link given in the question.