Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/TypeElementTest.cs')
-rw-r--r--mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/TypeElementTest.cs10
1 files changed, 2 insertions, 8 deletions
diff --git a/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/TypeElementTest.cs b/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/TypeElementTest.cs
index 78b4d692c11..46722240634 100644
--- a/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/TypeElementTest.cs
+++ b/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/TypeElementTest.cs
@@ -33,21 +33,15 @@ using System;
using System.Web.Services.Configuration;
using NUnit.Framework;
-namespace MonoTests.System.Web.Services.Configuration {
+namespace MonoTests.System.Web.Services {
[TestFixture]
public class TypeElementTest
{
[Test]
- public void Ctors1 ()
+ public void Ctors ()
{
TypeElement el = new TypeElement ();
Assert.IsNull (el.Type, "A1");
- }
-
- [Test]
- public void Ctors2 ()
- {
- TypeElement el;
el = new TypeElement (typeof (string));
Assert.AreEqual (typeof (string), el.Type, "A2");