| 8 | using namespace Exiv2; |
| 9 | |
| 10 | TEST(BmpImage, canBeOpenedWithEmptyMemIo) { |
| 11 | auto memIo = std::make_unique<MemIo>(); |
| 12 | ASSERT_NO_THROW(BmpImage bmp(std::move(memIo))); |
| 13 | } |
| 14 | |
| 15 | TEST(BmpImage, mimeTypeIsBmp) { |
| 16 | auto memIo = std::make_unique<MemIo>(); |
nothing calls this directly
no test coverage detected