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/Tests/UnitTest.cs')
-rw-r--r--Rx.NET/Tests.System.Reactive/Tests/UnitTest.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Rx.NET/Tests.System.Reactive/Tests/UnitTest.cs b/Rx.NET/Tests.System.Reactive/Tests/UnitTest.cs
deleted file mode 100644
index d5ea8a1..0000000
--- a/Rx.NET/Tests.System.Reactive/Tests/UnitTest.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
-
-using System.Reactive;
-using Microsoft.VisualStudio.TestTools.UnitTesting;
-
-namespace ReactiveTests.Tests
-{
- [TestClass]
- public class UnitTest
- {
- [TestMethod]
- public void Unit()
- {
- var u1 = new Unit();
- var u2 = new Unit();
- Assert.IsTrue(u1.Equals(u2));
- Assert.IsFalse(u1.Equals(""));
- Assert.IsFalse(u1.Equals(null));
- Assert.IsTrue(u1 == u2);
- Assert.IsFalse(u1 != u2);
- Assert.AreEqual(0, u1.GetHashCode());
- Assert.AreEqual("()", u1.ToString());
- }
- }
-}