-
Notifications
You must be signed in to change notification settings - Fork 160
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
Remove deprecated default ctor for DataSet #947
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #947 +/- ##
==========================================
- Coverage 86.13% 86.11% -0.03%
==========================================
Files 90 90
Lines 5858 5847 -11
==========================================
- Hits 5046 5035 -11
Misses 812 812 ☔ View full report in Codecov by Sentry. |
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.
To be discussed :)
This demonstrates that we need to expand the test coverage to ensure it errors out correctly. |
The only valid operations of default constructed DataSets and Groups is to assign a valid object to them. Therefore, calling any other methods should raise an exception.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #947 +/- ##
==========================================
+ Coverage 85.45% 86.38% +0.93%
==========================================
Files 92 92
Lines 5787 5898 +111
==========================================
+ Hits 4945 5095 +150
+ Misses 842 803 -39 ☔ View full report in Codecov by Sentry. |
No description provided.