< Summary

Class:Microsoft.Azure.Batch.Utils.Async
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Utils\Async.cs
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:13
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.cctor()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Utils\Async.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Text;
 5using System.Threading.Tasks;
 6
 7namespace Microsoft.Azure.Batch.Utils
 8{
 9    internal static class Async
 10    {
 111        internal static readonly Task CompletedTask = Task.Delay(0);
 12    }
 13}

Methods/Properties

.cctor()