// 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; namespace ReactiveTests.Dummies { internal static class DummyFunc { public static readonly Func Instance = () => { throw new NotImplementedException(); }; } internal static class DummyFunc { public static readonly Func Instance = t => { throw new NotImplementedException(); }; } internal static class DummyFunc { public static readonly Func Instance = (t, u) => { throw new NotImplementedException(); }; } internal static class DummyFunc { public static readonly Func Instance = (t, u, v) => { throw new NotImplementedException(); }; } internal static class DummyFunc { public static readonly Func Instance = (t, u, v, w) => { throw new NotImplementedException(); }; } internal static class DummyAction { public static readonly Action Instance = () => { throw new NotImplementedException(); }; } internal static class DummyAction { public static readonly Action Instance = t => { throw new NotImplementedException(); }; } internal static class DummyAction { public static readonly Action Instance = (t, u) => { throw new NotImplementedException(); }; } }