| 94 | // Test function used to test macro collision and non-expansion. |
| 95 | constexpr absl::string_view kBind = "bind"; |
| 96 | std::unique_ptr<CelFunction> CreateBindFunction() { |
| 97 | return std::make_unique<TestFunction>(kBind); |
| 98 | } |
| 99 | |
| 100 | class BindingsExtTest |
| 101 | : public testing::TestWithParam<std::tuple<TestInfo, bool, bool>> { |