单元测试 CLI/MFC 应用程序
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我在 CPPUnit 和 Google 测试。 无论是哪种情况,您都必须做一些工作才能将测试结果集成回 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.
我们使用 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.
如果您有 Team Test 版本,则可以使用它来测试 C++/CLI 应用程序和库。 请参阅此处。
If you have Team Test edition, you can use it to test C++/CLI applications and libraries. See here.