a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
34 lines
657 B
C#
34 lines
657 B
C#
//
|
|
// MonoTests.System.Web.Services.Discovery.ContractReferenceTest.cs
|
|
//
|
|
// Author:
|
|
// Tim Coleman (tim@timcoleman.com)
|
|
// Dave Bettin (dave@opendotnet.com)
|
|
//
|
|
// 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 {
|
|
|
|
[Test]
|
|
public void TestConstructors ()
|
|
{
|
|
ContractReference contractReference;
|
|
}
|
|
|
|
[Test]
|
|
public void TestConstants ()
|
|
{
|
|
Assert.AreEqual ("http://schemas.xmlsoap.org/disco/scl/", ContractReference.Namespace);
|
|
}
|
|
}
|
|
}
|