C++ 的测试驱动开发XPCOM组件?
我想使用 c++ XPCOM 组件创建一个 Firefox 扩展,该组件又使用 javascript XPCOM 组件。是否有任何框架允许 C++ XPCOM 组件/firefox 扩展的测试驱动开发?
I want to create a Firefox extension using c++ XPCOM component which in turn uses javascript XPCOM component. Is there any framework that allows test driven development of C++ XPCOM component/firefox extension ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以复制 Mozilla 用于测试本机代码的内容 。您只需确保链接到 libxul(这可能需要您构建 Firefox)。
使用 TestHarness.h 可以在此处找到示例文件。
You could copy what Mozilla uses to test native code. You just have to make sure you link with libxul (which may require that you build Firefox).
An example file that uses TestHarness.h can be found here.
除了 sdwilsh 的建议之外,您还可以使用 mozilla 使用的另一个测试框架 - xpcshell 测试。如果您构建 Firefox,这也是最容易设置的。
In addition to sdwilsh's suggestion, you could use another test framework mozilla uses - xpcshell tests. This is also the easiest to setup if you build Firefox.