/// <summary>
 /// Get test coverage report
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IDictionary <string, int?> > GetReportAsync(this IAutoRestReportServiceForAzure operations, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetReportWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Exemple #2
0
 /// <summary>
 /// Get test coverage report
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 public static IDictionary <string, int?> GetReport(this IAutoRestReportServiceForAzure operations)
 {
     return(Task.Factory.StartNew(s => ((IAutoRestReportServiceForAzure)s).GetReportAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult());
 }
 /// <summary>
 /// Get test coverage report
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 public static IDictionary <string, int?> GetReport(this IAutoRestReportServiceForAzure operations)
 {
     return(operations.GetReportAsync().GetAwaiter().GetResult());
 }
Exemple #4
0
 /// <summary>
 /// Get test coverage report
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='qualifier'>
 /// If specified, qualifies the generated report further (e.g. '2.7' vs '3.5'
 /// in for Python). The only effect is, that generators that run all tests
 /// several times, can distinguish the generated reports.
 /// </param>
 public static IDictionary <string, int?> GetReport(this IAutoRestReportServiceForAzure operations, string qualifier = default(string))
 {
     return(operations.GetReportAsync(qualifier).GetAwaiter().GetResult());
 }