| 205 | class IsInTest : public ::testing::TestWithParam<IsInType> { |
| 206 | protected: |
| 207 | IsInTest() = default; |
| 208 | virtual void SetUp() { |
| 209 | in = std::get<0>(GetParam()); |
| 210 | expected = std::get<1>(GetParam()); |
nothing calls this directly
no outgoing calls
no test coverage detected