c++ - gtest - 参数化测试限制,编译错误

标签 c++ c++11 googletest

当我实例化超过 50 个参数化测试时,出现以下错误:

main.cpp:31: error: expected class name
main.cpp:49: error: no matching function for call to 'Values'
gtest-param-test.h:1411: expanded from macro 'INSTANTIATE_TEST_CASE_P'
gtest-param-test.h:342: candidate function template not viable: requires single argument 'v1', but 51 arguments were provided
gtest-param-test.h:347: candidate function template not viable: requires 2 arguments, but 51 were provided
gtest-param-test.h:352: candidate function template not viable: requires 3 arguments, but 51 were provided
gtest-param-test.h:357: candidate function template not viable: requires 4 arguments, but 51 were provided
//and so on

这是我使用的示例简化代码:

template <typename param>
class MyFixtureWithParam: public ::testing::Test, public ::testing::WithParamInterface<param>
{
};

using MyPair = std::pair<std::string, std::string>;
using MyTests = MyFixtureWithParam<MyPair>;

TEST_P(MyTests, Params)
{
}

INSTANTIATE_TEST_CASE_P(Params, MyTests, ::testing::Values(std::make_pair("aaa", "bbb"),
                                                           std::make_pair("aaa", "bbb")));

超过 50 个 make_pair 生成该错误。如何解决?

最佳答案

我认为这个问题的原因是Gtest库中的非可变模板函数

https://github.com/google/googletest/blob/main/googletest/include/gtest/gtest-param-test.h

max amount of values

如果你想解决这个问题,最好使用 STL 容器

auto GetData(){
   std::vector< std::tuple < std::string, std::string > > vec;
   for(int i = 0; i < 5; i++ ){
      vec.push_back(std::make_tuple("a", "b" ));
   }
   return ::testing::ValuesIn(vec);
}

using Mytype = std::vector< std::tuple < std::string, std::string > >;

TEST_P(YourClassName, YourTestName){
   std::string a,b;
   std::tie(a,b) = GetParam();
   
   ASSERT ...
}

INSTANTIATE_TEST_CASE_P(YourClassName, YourTestName, GetData());

关于c++ - gtest - 参数化测试限制,编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55523575/

相关文章:

c++ 有没有一种方法可以将优先级队列元素复制到 vector 中,以便可以迭代以检查重复项

c++ - 是否存在无法锁定(提升为 shared_ptr)的 weak_ptr 之类的东西?如果不是,为什么?

c++ - C++11 预处理器有哪些新功能?

linux - 构建 googletest 失败 ../allocators.h : No such file or directory (but it's present in/usr/local/include/)

c++ - CMake 和 GTest 链接测试

c++ - 为什么 Microsoft 的 std::string 实现需要堆栈上的 40 个字节?

c++ - 如何将Qt文件路径从资源路径转换为绝对路径?

c++ - VC++ : How to get the time and date of a file?

c++ - 为什么我需要在 C++ 中使用 `size_t`?

c++ - 无法识别子进程中的 Googletest Explicit FAIL()