| 39 | public: |
| 40 | template <typename... Args> |
| 41 | absl::StatusOr<ListValue> NewIntListValue(Args&&... args) { |
| 42 | auto builder = NewListValueBuilder(arena()); |
| 43 | (static_cast<void>(builder->Add(std::forward<Args>(args))), ...); |
| 44 | return std::move(*builder).Build(); |
| 45 | } |
| 46 | }; |
| 47 | |
| 48 | TEST_F(ListValueTest, Default) { |