| 37 | BinaryToText() |
| 38 | : context(spvContextCreate(SPV_ENV_UNIVERSAL_1_0)), binary(nullptr) {} |
| 39 | ~BinaryToText() override { |
| 40 | spvBinaryDestroy(binary); |
| 41 | spvContextDestroy(context); |
| 42 | } |
| 43 | |
| 44 | void SetUp() override { |
| 45 | const char* textStr = R"( |
nothing calls this directly
no test coverage detected