gpt4 book ai didi

c++ - 避免输出到 CppUnit 的点

转载 作者:搜寻专家 更新时间:2023-10-31 01:15:09 26 4
gpt4 key购买 nike

运行 CppUnit 测试时,xml 或文本文件的输出中有点。

freopen("UnitTest-Results.xml", "a", stdout);
CppUnit::TextUi::TestRunner runner;
runner.addTest(pSuite);

// Change the default outputter to a Text Outputter.
runner.setOutputter(new CppUnit::XmlOutputter(&runner.result(), std::cout));

输出是:

.........................
OK (25 tests)

如何选择不打印输出文件中的点?

谢谢

最佳答案

根据您调用 run 的方式,您可以指定正确的参数来跳过输出。

方法签名是:

bool TextTestRunner::run( std::string testName,
bool doWait,
bool doPrintResult,
bool doPrintProgress )

使用 doPrintResult = falsedoPrintProgress = false 可以抑制所有输出。

另一种方法是使用 TestRunner 或您自己的子类。这也不是那么困难,只是取决于您的测试结构,哪一个更容易实现。

附言为了更清楚一点,ui::text::TestRunner 只是 TextTestRunner 的别名。通过 TextUi::TestRunner 的旧访问方式已弃用,应直接使用 TextTestRunner

关于c++ - 避免输出到 CppUnit 的点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10457535/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com