Closed
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