/// <summary>
 /// Return a list of releases for a app a tester has access to.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='ownerName'>
 /// The name of the owner
 /// </param>
 /// <param name='appName'>
 /// The name of the application
 /// </param>
 public static IList <TesterAppRelease> ListTester(this IReleases operations, string ownerName, string appName)
 {
     return(operations.ListTesterAsync(ownerName, appName).GetAwaiter().GetResult());
 }