16 #include <gmock/gmock.h>
17 #include <gtest/gtest.h>
26 using ::grpc_event_engine::experimental::ChannelArgsEndpointConfig;
28 TEST(EndpointConfigTest, CanSRetrieveValuesFromChannelArgs) {
35 TEST(EndpointConfigTest, ReturnsMonostateForMissingKeys) {
36 ChannelArgsEndpointConfig
config(
nullptr);
38 absl::holds_alternative<absl::monostate>(
config.Get(
"nonexistent")));
41 int main(
int argc,
char** argv) {