| 7 | using namespace Exiv2; |
| 8 | |
| 9 | TEST(Jp2Image, canBeCreatedFromScratch) { |
| 10 | auto memIo = std::make_unique<MemIo>(); |
| 11 | const bool create{true}; |
| 12 | ASSERT_NO_THROW(Jp2Image image(std::move(memIo), create)); |
| 13 | } |
| 14 | |
| 15 | TEST(Jp2Image, canBeOpenedEvenWithAnEmptyMemIo) { |
| 16 | auto memIo = std::make_unique<MemIo>(); |
nothing calls this directly
no test coverage detected