gpt4 book ai didi

c++ - 如何使用 google test for C++ 运行数据组合

转载 作者:可可西里 更新时间:2023-11-01 17:10:36 24 4
gpt4 key购买 nike

我有一个单元测试,需要针对 200 种可能的数据组合运行。 (生产实现在配置文件中有要测试的数据。我知道如何模拟这些值)。我更喜欢 nit 为每个组合编写单独的测试用例,并使用某种方式循环访问数据。是否有一些直接使用 Google test for C++ 的方法?

谢谢,卡西克

最佳答案

您可以使用 gtest 的 Value-parameterized tests为此。

将它与 Combine(g1, g2, ..., gN) 生成器结合使用听起来是最好的选择。

下面的示例填充了 2 个 vector,一个是 int,另一个是 string,然后只使用一个测试夹具, 为 2 个 vector 中可用值的每个组合创建测试:

#include <iostream>
#include <string>
#include <tuple>
#include <vector>
#include "gtest/gtest.h"

std::vector<int> ints;
std::vector<std::string> strings;

class CombinationsTest :
public ::testing::TestWithParam<std::tuple<int, std::string>> {};

TEST_P(CombinationsTest, Basic) {
std::cout << "int: " << std::get<0>(GetParam())
<< " string: \"" << std::get<1>(GetParam())
<< "\"\n";
}

INSTANTIATE_TEST_CASE_P(AllCombinations,
CombinationsTest,
::testing::Combine(::testing::ValuesIn(ints),
::testing::ValuesIn(strings)));

int main(int argc, char **argv) {
for (int i = 0; i < 10; ++i) {
ints.push_back(i * 100);
strings.push_back(std::string("String ") + static_cast<char>(i + 65));
}
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}

关于c++ - 如何使用 google test for C++ 运行数据组合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13213022/

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