MCPcopy Create free account
hub / github.com/AGenUI/AGenUI / TEST_P

Function TEST_P

tests/cpp/function_call/builtins_test.cpp:455–460  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453};
454
455TEST_P(EmailParamTest, ValidatesCorrectly) {
456 auto [input, expected] = GetParam();
457 auto r = fc.execute({{"value", input}});
458 ASSERT_TRUE(isSuccess(r));
459 EXPECT_EQ(r.getValue(), expected);
460}
461
462INSTANTIATE_TEST_SUITE_P(ValidEmails, EmailParamTest, ::testing::Values(
463 EmailCase{"user@example.com", true},

Callers

nothing calls this directly

Calls 3

getValueMethod · 0.80
isSuccessFunction · 0.70
executeMethod · 0.65

Tested by

no test coverage detected