Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rx.NET/Tests.System.Reactive/Dummies/DummyObserver.cs')
-rw-r--r--Rx.NET/Tests.System.Reactive/Dummies/DummyObserver.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/Rx.NET/Tests.System.Reactive/Dummies/DummyObserver.cs b/Rx.NET/Tests.System.Reactive/Dummies/DummyObserver.cs
deleted file mode 100644
index 2a909f8..0000000
--- a/Rx.NET/Tests.System.Reactive/Dummies/DummyObserver.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
-
-using System;
-
-namespace ReactiveTests.Dummies
-{
- class DummyObserver<T> : IObserver<T>
- {
- public static readonly DummyObserver<T> Instance = new DummyObserver<T>();
-
- DummyObserver()
- {
- }
-
- public void OnNext(T value)
- {
- throw new NotImplementedException();
- }
-
- public void OnError(Exception exception)
- {
- throw new NotImplementedException();
- }
-
- public void OnCompleted()
- {
- throw new NotImplementedException();
- }
- }
-}