From 76e7406a5cd84dd9c45dbdbff2aa23b1c308e839 Mon Sep 17 00:00:00 2001 From: stoorx Date: Mon, 24 Feb 2025 14:26:21 +0300 Subject: [PATCH] Refactor `Combine()` generator function --- googletest/include/gtest/gtest-param-test.h | 9 ++++--- .../include/gtest/internal/gtest-param-util.h | 26 +++++-------------- 2 files changed, 12 insertions(+), 23 deletions(-) diff --git a/googletest/include/gtest/gtest-param-test.h b/googletest/include/gtest/gtest-param-test.h index e305e715..f5caed68 100644 --- a/googletest/include/gtest/gtest-param-test.h +++ b/googletest/include/gtest/gtest-param-test.h @@ -404,9 +404,12 @@ inline internal::ParamGenerator Bool() { return Values(false, true); } // INSTANTIATE_TEST_SUITE_P(TwoBoolSequence, FlagDependentTest, // Combine(Bool(), Bool())); // -template -internal::CartesianProductHolder Combine(const Generator&... g) { - return internal::CartesianProductHolder(g...); +template +internal::ParamGenerator> Combine( + internal::ParamGenerator&&... generators) { + return internal::ParamGenerator>( + new internal::CartesianProductGenerator, T...>( + std::forward(generators)...)); } // ConvertGenerator() wraps a parameter generator in order to cast each produced diff --git a/googletest/include/gtest/internal/gtest-param-util.h b/googletest/include/gtest/internal/gtest-param-util.h index 01e3e9e1..b2bdf16d 100644 --- a/googletest/include/gtest/internal/gtest-param-util.h +++ b/googletest/include/gtest/internal/gtest-param-util.h @@ -807,14 +807,14 @@ internal::ParamGenerator ValuesIn( namespace internal { -template -class CartesianProductGenerator - : public ParamGeneratorInterface<::std::tuple> { +template +class CartesianProductGenerator : public ParamGeneratorInterface { public: - typedef ::std::tuple ParamType; + using ParamType = R; + + explicit CartesianProductGenerator(ParamGenerator&&... g) + : generators_(std::forward(g)...) {} - CartesianProductGenerator(const std::tuple...>& g) - : generators_(g) {} ~CartesianProductGenerator() override = default; ParamIteratorInterface* Begin() const override { @@ -924,20 +924,6 @@ class CartesianProductGenerator std::tuple...> generators_; }; -template -class CartesianProductHolder { - public: - CartesianProductHolder(const Gen&... g) : generators_(g...) {} - template - operator ParamGenerator<::std::tuple>() const { - return ParamGenerator<::std::tuple>( - new CartesianProductGenerator(generators_)); - } - - private: - std::tuple generators_; -}; - template class ParamGeneratorConverter : public ParamGeneratorInterface { public: