| 30 | ::testing::TestWithParam<EnumCase<spv_generator_t>>; |
| 31 | |
| 32 | TEST_P(GeneratorMagicNumberTest, Single) { |
| 33 | EXPECT_THAT(std::string(spvGeneratorStr(GetParam().value())), |
| 34 | GetParam().name()); |
| 35 | } |
| 36 | |
| 37 | INSTANTIATE_TEST_SUITE_P( |
| 38 | Registered, GeneratorMagicNumberTest, |
nothing calls this directly
no test coverage detected