// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the Apache 2.0 License. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Reactive; using System.Reactive.Concurrency; using System.Reactive.Linq; using Microsoft.Reactive.Testing; using Xunit; using ReactiveTests.Dummies; using System.Reflection; using System.Threading; using System.Reactive.Disposables; using System.Reactive.Subjects; namespace ReactiveTests.Tests { public class LetTest : ReactiveTest { #region Let [Fact] public void Let_ArgumentChecking() { var someObservable = Observable.Empty(); ReactiveAssert.Throws(() => ObservableEx.Let(default(IObservable), x => x)); ReactiveAssert.Throws(() => ObservableEx.Let(someObservable, null)); } [Fact] public void Let_CallsFunctionImmediately() { bool called = false; Observable.Empty().Let(x => { called = true; return x; }); Assert.True(called); } #endregion } }