#include "gtest.h" #include std::optional NGTest::GetTestParam(std::string_view name) { auto val = ::GetTestParam(name); if (val.empty()) { return {}; } else { return {val}; } }