C++ 的测试驱动开发XPCOM组件?

发布于 2024-08-07 23:51:39 字数 108 浏览 4 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

送舟行 2024-08-14 23:51:39

您可以复制 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.

疏忽 2024-08-14 23:51:39

除了 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文