2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / class / System.Web.Services / Test / System.Web.Services / WebServiceAttributeTest.cs
1 //
2 // MonoTests.System.Web.Services.WebServiceAttributeTest.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //   Dave Bettin (dave@opendotnet.com)
7 //
8 // Copyright (C) Tim Coleman, 2002
9 // Copyright (C) Dave Bettin, 2003
10 //
11
12 using NUnit.Framework;
13 using System;
14 using System.Web.Services;
15
16 namespace MonoTests.System.Web.Services {
17
18         [TestFixture]
19         public class WebServiceAttributeTest : Assertion {
20
21                 [Test]
22                 public void TestConstructors ()
23                 {
24                         WebServiceAttribute attribute;
25
26                         attribute = new WebServiceAttribute ();
27                         AssertEquals (String.Empty, attribute.Description);
28                         AssertEquals (String.Empty, attribute.Name);
29                         AssertEquals ("http://tempuri.org/", attribute.Namespace);
30                 }
31         }
32 }