コード例 #1
0
ファイル: Recorded.cs プロジェクト: ibebbs/PowerFull
 public static Recorded <Notification <T> > ExpectedOnNext <T>(TimeSpan timeSpan, T value)
 {
     return(new Recorded <Notification <T> >(timeSpan.AsTestTime().Ticks, Notification.CreateOnNext(value)));
 }
コード例 #2
0
 public static TimeSpan AsTestDisposalTime(this TimeSpan timeSpan)
 {
     return(timeSpan.AsTestTime().Add(One));
 }