| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | // 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.Reactive;using System.Reactive.Linq;using Microsoft.Reactive.Testing;using Xunit;namespace ReactiveTests.Tests{    public class EventPatternSourceBaseTest    {        [Fact]        public void ArgumentChecking()        {            var xs = Observable.Empty<EventPattern<object, EventArgs>>();            ReactiveAssert.Throws<ArgumentNullException>(() => new MyEventPatternSource(null, (a, x) => { }));            ReactiveAssert.Throws<ArgumentNullException>(() => new MyEventPatternSource(xs, null));            var e = new MyEventPatternSource(xs, (a, x) => { })            {                GetInvoke = h => (_, __) => { }            };            ReactiveAssert.Throws<ArgumentNullException>(() => e.OnNext += null);            e.GetInvoke = h => null;            ReactiveAssert.Throws<ArgumentNullException>(() => e.OnNext += (_, __) => { });            e.GetInvoke = null;            ReactiveAssert.Throws<ArgumentNullException>(() => e.OnNext -= null);        }    }    internal class MyEventPatternSource : EventPatternSourceBase<object, EventArgs>    {        public MyEventPatternSource(IObservable<EventPattern<object, EventArgs>> source, Action<Action<object, EventArgs>, EventPattern<object, EventArgs>> invokeHandler)            : base(source, invokeHandler)        {        }        public Func<EventHandler<EventArgs>, Action<object, EventArgs>> GetInvoke;        public event EventHandler<EventArgs> OnNext        {            add            {                Add(value, GetInvoke(value));            }            remove            {                Remove(value);            }        }    }}
 |