| 123456789101112131415161718192021222324252627282930313233 |
- //
- // MonoTests.System.Web.Services.Discovery.ContractReferenceTest.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- // Dave Bettin ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- // Copyright (C) Dave Bettin, 2003
- //
- using NUnit.Framework;
- using System;
- using System.Web.Services.Discovery;
- namespace MonoTests.System.Web.Services.Discovery {
- [TestFixture]
- public class ContractReferenceTest : Assertion {
- [Test]
- public void TestConstructors ()
- {
- ContractReference contractReference;
- }
- [Test]
- public void TestConstants ()
- {
- AssertEquals ("http://schemas.xmlsoap.org/disco/scl/", ContractReference.Namespace);
- }
- }
- }
|