-
Notifications
You must be signed in to change notification settings - Fork 392
Closed
Labels
bugSomething isn't workingSomething isn't workingtenet-coverageIssue related to possible incorrect coverageIssue related to possible incorrect coverage
Description
found during #649, this combination of code seems to have incorrect reports
public async Task<ActionResult<IEnumerable<SystemUserItem>>> SystemUsers(CancellationToken ct)
{
using var data = this.factory.CreateReadOnly<SystemUserItem>();
var list = await data.AllAsync(ct)
.ConfigureAwait(false);
return this.Ok(list);
}
here is the final report output:
here is the diff of the coverage xml:
left side = unit test - code is not executed
right side = integration test - code is there doesnt appear to be any branches - all code execute under a single call
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingtenet-coverageIssue related to possible incorrect coverageIssue related to possible incorrect coverage