The following type of tests are not executed because they do not produce any data for [Values] attribute when parameters are in bool, in bool?, ref bool, or ref bool?.
public void SomeParameterizedTest([Values] in bool someFlag)
{
// Test case code here ...
}
The test is not reported as failure, or ignored but it is silently not executed.
If the described behavior is not a design decision I would like to add support for the four scenarios (already implemented on my fork at commit d6f38fadc1c790695720bddde233c4b0fcdb02f4).
As a side note, it will be very helpful to have some kind of warning about those situations.
The following type of tests are not executed because they do not produce any data for
[Values]attribute when parameters arein bool,in bool?,ref bool, orref bool?.The test is not reported as failure, or ignored but it is silently not executed.
If the described behavior is not a design decision I would like to add support for the four scenarios (already implemented on my fork at commit d6f38fadc1c790695720bddde233c4b0fcdb02f4).
As a side note, it will be very helpful to have some kind of warning about those situations.