// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. using System; namespace ReactiveTests.Dummies { static class DummyFunc { public static readonly Func Instance = () => { throw new NotImplementedException(); }; } static class DummyFunc { public static readonly Func Instance = t => { throw new NotImplementedException(); }; } static class DummyFunc { public static readonly Func Instance = (t, u) => { throw new NotImplementedException(); }; } static class DummyFunc { public static readonly Func Instance = (t, u, v) => { throw new NotImplementedException(); }; } static class DummyFunc { public static readonly Func Instance = (t, u, v, w) => { throw new NotImplementedException(); }; } static class DummyAction { public static readonly Action Instance = () => { throw new NotImplementedException(); }; } static class DummyAction { public static readonly Action Instance = t => { throw new NotImplementedException(); }; } static class DummyAction { public static readonly Action Instance = (t, u) => { throw new NotImplementedException(); }; } }