ServiceDescriptionTest.cs 529 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // ServiceDescriptionTest.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. // Copyright (C) 2005 Novell, Inc.
  8. //
  9. using NUnit.Framework;
  10. using System;
  11. using System.IO;
  12. using System.Web.Services.Description;
  13. using System.Xml.Serialization;
  14. namespace MonoTests.System.Web.Services.Description
  15. {
  16. [TestFixture]
  17. public class ServiceDescriptionTest
  18. {
  19. [Test]
  20. public void SimpleWrite ()
  21. {
  22. ServiceDescription sd = new ServiceDescription ();
  23. Assert.IsNull (sd.Name);
  24. sd.Write (TextWriter.Null);
  25. }
  26. }
  27. }