-
Notifications
You must be signed in to change notification settings - Fork 89
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
test: Add unit tests for RTType.hpp #3452
base: develop
Are you sure you want to change the base?
Conversation
m_node(), | ||
m_group( "root", m_node ), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you need these 2?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess the wrapper constructor nees a group... But what's the conduit node for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah... you need to make a Group.. okay I was hoping we could avoid that include.
…EOS-DEV/GEOS into test/omarduran/unitest_rttypes
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #3452 +/- ##
===========================================
+ Coverage 56.82% 56.83% +0.01%
===========================================
Files 1154 1158 +4
Lines 99984 100016 +32
===========================================
+ Hits 56816 56848 +32
Misses 43168 43168 ☔ View full report in Codecov by Sentry. |
Introduces unit test for
RTTypes.hpp
. The motivation is to test a failing dynamic cast with reference in apple clang 16.0.0 whenNEW_TYPE==EXISTING_TYPE
(see NEW_TYPE dynamicCast( EXISTING_TYPE & val )).Other functions and structures are being tested
RTTypes.hpp
to augment the test coverage.