| 35 | class BinaryToText : public ::testing::Test { |
| 36 | public: |
| 37 | BinaryToText() |
| 38 | : context(spvContextCreate(SPV_ENV_UNIVERSAL_1_0)), binary(nullptr) {} |
| 39 | ~BinaryToText() override { |
| 40 | spvBinaryDestroy(binary); |
| 41 | spvContextDestroy(context); |
nothing calls this directly
no test coverage detected