-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New ImageTypes enum class #2093
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2093 +/- ##
==========================================
+ Coverage 63.19% 63.64% +0.45%
==========================================
Files 96 96
Lines 19203 19206 +3
Branches 9797 9798 +1
==========================================
+ Hits 12135 12224 +89
+ Misses 4762 4680 -82
+ Partials 2306 2302 -4
Continue to review full report at Codecov.
|
- Split test identifying which Images can be created and which not - Add tests for the ImageFactory::create(type, filePath)
9fa13d0
to
408d80b
Compare
Gentlemen: This changed caused me a build issue in actions.cpp. It turned out to be a conflict with /usr/local/include/exiv2. My fix was I don't think any change is required and I'm recording this here as it may help another user.
|
In this PR I just focus in the addition of a new enum class
ImageType
to replace the previous namespace in which we were adding global constant values for the image types.Note that the characterisation tests have revealed some bugs that I also fixed in this branch.
Note that this has been rescued from the
old_master
branch. The PR in which these changes were already reviewed and approved is: #737