-
Notifications
You must be signed in to change notification settings - Fork 388
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
[BUG] HasValue of Nullable<T> is not taken into account #1644
Comments
I don't think this is a bug in Coverlet. By not using the .Value property when reading the value of timeFromService, the C# generated during the lowering process adds an additional check to ensure that it has a value when it is used. As you have already checked that it has a value, the branch that exists where it does not have a value at this later point is never covered. In other words, your code public static bool IsInPast(this IService service)
{
var timeFromService = service.GetTime();
if (!timeFromService.HasValue) return true;
var isInPast = timeFromService < TimeOnly.FromDateTime(DateTime.UtcNow);
return isInPast;
} becomes public static bool IsInPast(this IService service)
{
TimeOnly? timeFromService = service.GetTime();
if (!timeFromService.HasValue)
return true;
TimeOnly? nullable = timeFromService;
TimeOnly timeOnly = TimeOnly.FromDateTime(DateTime.UtcNow);
return nullable.HasValue && nullable.GetValueOrDefault() < timeOnly;
} As you can see the additional .HasValue call in the last line of the lowered version is the culprit of this unexpected lack of coverage. You could rectify this lack of branch coverage by using the .Value property and simply editing your code to be as follows. public static bool IsInPast(this IService service)
{
var timeFromService = service.GetTime();
if (!timeFromService.HasValue) return true;
var isInPast = timeFromService.Value < TimeOnly.FromDateTime(DateTime.UtcNow);
return isInPast;
} |
@Thomas-Shephard thank you for your reply 🤜🏻🤛🏻
Am I missing something or what is the difference between your suggested workaround and what I already wrote in the question? 🤔
One may have different opinions about that, but I do understand that as a maintainer, one tends to not see it as a bug, whereas as a user I perceive it as a problem. Maybe we can agree that the null check has already been done before, so calling up |
Describe the bug
After ensuring that an instance of
Nullable<T>
is notnull
via.HasValue
, coverlet still assumes the instance to be nullable and therefore the branch coverage indicates a missing test branch.To Reproduce
Here you find a complete repro case.
Expected behavior
Branch coverage is 100% for the line
var isInPast = timeFromService < TimeOnly.FromDateTime(DateTime.UtcNow);
.Actual behavior
Coverlet complains that only 1 out of 2 branches is tested as it assumes that

timeFromService
can still benull
:Configuration (please complete the following information):
Please provide more information on your .NET configuration:
coverlet.msbuild v6.0.2
Additional context
Using
timeFromService.Value
rather thantimeFromService
can be used as a workaround.The text was updated successfully, but these errors were encountered: