Ejemplo n.º 1
0
 public static bool Completed <T>(
     this ITestableObserver <T> o) => o.GetValues(NotificationKind.OnCompleted)
 .Select(_ => true)
 .SingleOrDefault();
Ejemplo n.º 2
0
 public static IEnumerable <T> GetValues <T>(
     this ITestableObserver <T> o) => o.GetValues(NotificationKind.OnNext)
 .Select(x => x.Value);