Regression: UnitTestOptions are no longer evaluated
See original GitHub issueThe support for returnDefaultValues
and includeAndroidResources
added in #80 is no longer present in the plugin.
Has this been done purposefully? If so, is there any way to enable those flags for JUnit 4 and JUnit 5 in the same project?
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Regression Diagnostics - SPH - Boston University
Regression diagnostics are used to evaluate the model assumptions and investigate whether or not there are observations with a large, undue influence on...
Read more >Testing the assumptions of linear regression - Duke People
There are four principal assumptions which justify the use of linear regression models for purposes of inference or prediction: (i) linearity and additivity ......
Read more >Evaluation metrics & Model Selection in Linear Regression
In this article, we shall go over the most common evaluation metrics in Linear Regression and also model selection strategies. We know that ......
Read more >Evaluating the assumptions of linear regression models
Linear regression models assume that the residuals are normally distributed, that each observation is independent of the others, that there is a linear ......
Read more >Interpreting Residual Plots to Improve Your Regression
If the variable you need is unavailable, or you don't even know what it would be, then your model can't really be improved...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This was instantly fixed by updating
org.junit.vintage:junit-vintage-engine
,org.junit.jupiter:junit-jupiter-api
andorg.junit.jupiter:junit-jupiter-engine
from5.4.2
to5.5.0-M1
.You are totally right, I just noticed that for some reasons the demo project is able to run. I am indeed getting in a weird situation where, if I enable those
unitTests
options, I only get JUnit 5, Spek 1 and Spek 2 tests running, and not JUnit 4. I cannot replicate it in the demo project, so it must be something else messing up my configuration.I will update this issue when I find a solution, as it may be useful for someone else.