Files
linux-packaging-mono/mcs/class/System.Web.Services/Test/System.Web.Services/WebServiceTest.cs
Xamarin Public Jenkins (auto-signing) e5cd25ff4f Imported Upstream version 4.8.0.459
Former-commit-id: 2a5b9df2014f72665850c7f885e7aed54704a53a
2017-01-19 14:22:10 +00:00

28 lines
437 B
C#

//
// MonoTests.System.Web.Services.WebServiceTest.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// Copyright (C) 2007 Novell, Inc.
//
#if !MOBILE && !MONOMAC
using NUnit.Framework;
using System;
using System.Web.Services;
namespace MonoTests.System.Web.Services
{
[TestFixture]
public class WebServiceTest
{
[Test] // test for bug #331183(!)
public void Constructor ()
{
new WebService ();
}
}
}
#endif