【发布时间】:2013-06-06 13:36:52
【问题描述】:
我想知道如何在没有 Visual Studio IDE 的机器上使用 WinUnit 测试 dll?
我做了一些搜索,但看起来 WinUnit 测试需要在测试机器上安装 IDE。
那么,我应该使用WinUnit.exe -someargument MyTest.dll这样的命令行吗?
非常感谢。
【问题讨论】:
标签: c++ unit-testing testing dll
我想知道如何在没有 Visual Studio IDE 的机器上使用 WinUnit 测试 dll?
我做了一些搜索,但看起来 WinUnit 测试需要在测试机器上安装 IDE。
那么,我应该使用WinUnit.exe -someargument MyTest.dll这样的命令行吗?
非常感谢。
【问题讨论】:
标签: c++ unit-testing testing dll
我正在使用调用 B.dll 的 winunit 测试 A.dll;我想测试所有功能所以这里是命令行的样子
WinUnit -p FunctionsInAdllYouWantToTest --YourEnvioronmentVariable "YourPathOfBdll\B.dll" "YourPathOfAdll\A.dll"
类似上面的。
【讨论】: