Incorrect branch coverage async pattern for targetframework net472 (#1169)

Incorrect branch coverage async pattern for targetframework
This commit is contained in:
David Müller
2021-05-30 12:00:20 +02:00
committed by GitHub
parent db09e8b156
commit 4902c245c8
7 changed files with 65 additions and 6 deletions
@@ -0,0 +1,12 @@
using System.Threading.Tasks;
namespace coverlet.tests.projectsample.netframework
{
public class AsyncAwaitStateMachineNetFramework
{
public async Task AsyncAwait()
{
await Task.CompletedTask;
}
}
}