gpt4 book ai didi

c++ - 按特定顺序运行测试

转载 作者:可可西里 更新时间:2023-11-01 18:25:22 24 4
gpt4 key购买 nike

我已经在 Visual Studio 2013 中安装了 Google 测试运行程序扩展。

现在我有一个测试项目

TestProject
|
|-InitializationTests.cpp
|-RunningTests.cpp

我想在 RunnintTests.cpp 中的测试之前运行 InitializationTests.cpp 中的所有测试用例。我怎样才能做到这一点?

最佳答案

当然可以!这是一个不具体的程序。
main.cpp :

::testing::GTEST_FLAG(filter) = "tA.*";  
RUN_ALL_TESTS();
::testing::GTEST_FLAG(filter) = "tB.*";
RUN_ALL_TESTS();
::testing::GTEST_FLAG(filter) = "tC.*";
return RUN_ALL_TESTS();

它将按下一个顺序运行:

 tA.*,   
tB.*,
tC.*,

关于c++ - 按特定顺序运行测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27938226/

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