// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT License. // See the LICENSE file in the project root for more information. using System; using System.Reactive.Linq; using Microsoft.Reactive.Testing; using Microsoft.VisualStudio.TestTools.UnitTesting; using Assert = Xunit.Assert; namespace ReactiveTests.Tests { [TestClass] public class LetTest : ReactiveTest { #region Let [TestMethod] public void Let_ArgumentChecking() { var someObservable = Observable.Empty(); ReactiveAssert.Throws(() => ObservableEx.Let(default(IObservable), x => x)); ReactiveAssert.Throws(() => ObservableEx.Let(someObservable, null)); } [TestMethod] public void Let_CallsFunctionImmediately() { var called = false; Observable.Empty().Let(x => { called = true; return x; }); Assert.True(called); } #endregion } }