blob: 4c7a9e8f5e66846c67dae668166eb98f62403d96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "gtest.h"
#include <library/cpp/testing/common/env.h>
std::optional<std::string_view> NGTest::GetTestParam(std::string_view name) {
auto val = ::GetTestParam(name);
if (val.empty()) {
return {};
} else {
return {val};
}
}
|