| 17 | std::array<uint8_t, chunk_size_to> buffer; |
| 18 | |
| 19 | FileFixture() : file(nullptr), buffer() |
| 20 | { |
| 21 | // Open file for binary write |
| 22 | file = fopen("fwrite.out", "wb"); |
| 23 | } |
| 24 | |
| 25 | ~FileFixture() |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected