单元测试 CLI/MFC 应用程序

发布于 2024-07-10 00:56:06 字数 84 浏览 4 评论 0原文

我有 CLI/MFC 应用程序,我想开始学习如何用它进行单元测试。 我有VS2008专业版。 如果可能的话,我想使用内置的单元测试。 感谢您的输入!

I have CLI/MFC application and I would like to begin to learn how to unit test with it. I have VS2008 Pro. If possible, I would like to use the built in unit testing. Thanks for your input!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

一瞬间的火花 2024-07-17 00:56:06

我在 CPPUnitGoogle 测试。 无论是哪种情况,您都必须做一些工作才能将测试结果集成回 Studio。 您想要的结果的粒度直接影响工作量。 您想要整个测试集的通过/失败,还是单个结果? 前者是一个简单的 msbuild 任务,后者需要将结果集输出到 XML,通过转换进行调整,然后将其拉回。

I've had success with both CPPUnit and Google Test. For either you have to do a bit of work to get the test results to integrate back into Studio. The granularity of the results you want directly affects how much work. Do you want a pass/fail for the whole test set, or individual results? The former is a simple msbuild task, the latter requires outputting the result set to XML, massaging that with a transform, then pulling it back in.

↘紸啶 2024-07-17 00:56:06

我们使用 Gallio & MbUnit 来测试我们的 MFC 和 MFC C++/CLI 应用程序。 只需用 C++/CLI 编写测试,然后您就可以在单个框架中测试托管和非托管代码。 我们还使用 NMock2 来模拟托管代码。

We use Gallio & MbUnit to test our MFC & C++/CLI application. Simply write the tests in C++/CLI then you can test both managed and unmanged code in a single framework. We also use NMock2 for mocking the managed code.

泡沫很甜 2024-07-17 00:56:06

如果您有 Team Test 版本,则可以使用它来测试 C++/CLI 应用程序和库。 请参阅此处

If you have Team Test edition, you can use it to test C++/CLI applications and libraries. See here.

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