Browse Source

2010-04-19 Atsushi Enomoto <[email protected]>

	* AsyncPatternTester.cs, MessageContractTest.cs, AsyncCallTest.cs:
	  enable working tests.


svn path=/trunk/mcs/; revision=155694
Atsushi Eno 15 years ago
parent
commit
32cf28affb

+ 1 - 2
mcs/class/System.ServiceModel/Test/FeatureBased/Features.Serialization/AsyncCallTest.cs

@@ -9,8 +9,7 @@ using System.Threading;
 namespace MonoTests.Features.Serialization
 {
 	[TestFixture]
-	[Category ("NotWorking")] // Can't even build in Mono. Missing public APIs.
-    public class AsyncCallTest : TestFixtureBase<AsyncCallTesterContractClient, AsyncCallTester, MonoTests.Features.Contracts.IAsyncCallTesterContract>
+	public class AsyncCallTest : TestFixtureBase<AsyncCallTesterContractClient, AsyncCallTester, MonoTests.Features.Contracts.IAsyncCallTesterContract>
 	{
 		bool client_QueryCompleted;
 		string s = string.Empty;

+ 0 - 1
mcs/class/System.ServiceModel/Test/FeatureBased/Features.Serialization/AsyncPatternTester.cs

@@ -14,7 +14,6 @@ namespace MonoTests.Features.Serialization
 	{
 
 		[Test]
-		[Category("NotWorking")]
 		public void TestAsync () {
 			Assert.AreEqual (ClientProxy.AsyncMethod (), 3, "Called method with AsyncPattern=true");
 		}

+ 5 - 0
mcs/class/System.ServiceModel/Test/FeatureBased/Features.Serialization/ChangeLog

@@ -1,3 +1,8 @@
+2010-04-19  Atsushi Enomoto  <[email protected]>
+
+	* AsyncPatternTester.cs, MessageContractTest.cs, AsyncCallTest.cs:
+	  enable working tests.
+
 2009-02-24  Atsushi Enomoto  <[email protected]>
 
 	* MessageContractTest.cs:

+ 1 - 2
mcs/class/System.ServiceModel/Test/FeatureBased/Features.Serialization/MessageContractTest.cs

@@ -7,8 +7,7 @@ using NUnit.Framework;
 namespace MonoTests.Features.Serialization
 {
 	[TestFixture]
-	[Category ("NotWorking")] // Serialization failure
-    public class MessageContractTest : TestFixtureBase<MessageContractTesterContractClient, MonoTests.Features.Contracts.MessageContractTester, MonoTests.Features.Contracts.IMessageContractTesterContract>
+	public class MessageContractTest : TestFixtureBase<MessageContractTesterContractClient, MonoTests.Features.Contracts.MessageContractTester, MonoTests.Features.Contracts.IMessageContractTesterContract>
 	{
 		[Test]
 		[Ignore ("fails under .NET; I never bothered to fix the test")]