| 25 | } // namespace |
| 26 | |
| 27 | TEST(Jp2FileTypeBox, isNotValidWithoutProperValuesSet) { |
| 28 | const std::vector<std::uint8_t> boxData(12); |
| 29 | ASSERT_FALSE(isValidBoxFileType(boxData)); |
| 30 | } |
| 31 | |
| 32 | TEST(Jp2FileTypeBox, isValidWithMinimumPossibleSizeAndValidValues) { |
| 33 | std::vector<std::uint8_t> boxData(12); |
nothing calls this directly
no test coverage detected