New ImageTypes enum class#2093
Merged
Merged
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.
|
Collaborator
Author
- Split test identifying which Images can be created and which not - Add tests for the ImageFactory::create(type, filePath)
9fa13d0 to
408d80b
Compare
hassec
approved these changes
Feb 15, 2022
Collaborator
|
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In this PR I just focus in the addition of a new enum class
ImageTypeto 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_masterbranch. The PR in which these changes were already reviewed and approved is: #737