| 98 | }; |
| 99 | |
| 100 | TEST_F(ImageLoaderTests, returnsErrorIfDownloaderFails) { |
| 101 | auto result = loadImage(_downloadErrorUrl, getWidth(), getHeight()); |
| 102 | ASSERT_TRUE(result.failure()); |
| 103 | ASSERT_TRUE(result.error().toString() == _errMsg.toStringView()); |
| 104 | } |
| 105 | |
| 106 | TEST_F(ImageLoaderTests, returnsErrorIfDataCannotBeConvertedToImage) { |
| 107 | auto result = loadImage(_dataErrorUrl, getWidth(), getHeight()); |
nothing calls this directly
no test coverage detected