(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Web.Services / Test / System.Web.Services.Description / OperationMessageTest.cs
blob0f2ddb176a4af52d6ca6d6ded83b22aace90babd
1 //
2 // MonoTests.System.Web.Services.Description.OperationMessageTest.cs
3 //
4 // Author:
5 // Erik LeBel <eriklebel@yahoo.ca>
6 //
7 // (C) 2003 Erik LeBel
8 //
10 using NUnit.Framework;
12 using System;
13 using System.Web.Services.Description;
14 using System.Xml;
16 namespace MonoTests.System.Web.Services.Description
18 [TestFixture]
19 public class OperationMessageTest
21 OperationMessage operation;
23 [SetUp]
24 public void InitializeOperation()
26 // workaround: OperationInput, OperationOutput and OperationFault are all empty derivations of OperationMessage
27 operation = new OperationInput();
30 [Test]
31 public void TestDefaultProperties()
33 Assertion.AssertEquals(String.Empty, operation.Documentation);
34 Assertion.AssertNull(operation.Name);
35 Assertion.AssertEquals(XmlQualifiedName.Empty, operation.Message);
36 Assertion.AssertNull(operation.Operation);