WebServiceAttributeTest.cs 706 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MonoTests.System.Web.Services.WebServiceAttributeTest.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. // Dave Bettin ([email protected])
  7. //
  8. // Copyright (C) Tim Coleman, 2002
  9. // Copyright (C) Dave Bettin, 2003
  10. //
  11. using NUnit.Framework;
  12. using System;
  13. using System.Web.Services;
  14. namespace MonoTests.System.Web.Services {
  15. [TestFixture]
  16. public class WebServiceAttributeTest : Assertion {
  17. [Test]
  18. public void TestConstructors ()
  19. {
  20. WebServiceAttribute attribute;
  21. attribute = new WebServiceAttribute ();
  22. AssertEquals (String.Empty, attribute.Description);
  23. AssertEquals (String.Empty, attribute.Name);
  24. AssertEquals ("http://tempuri.org/", attribute.Namespace);
  25. }
  26. }
  27. }