Files
linux-packaging-mono/mcs/class/System.Web.Services/Test/System.Web.Services/WebServiceTest.cs
Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

28 lines
440 B
C#

//
// MonoTests.System.Web.Services.WebServiceTest.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// Copyright (C) 2007 Novell, Inc.
//
#if !MOBILE && !XAMMAC_4_5
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