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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2014-09-04 20:55:43 +0400
committerAlexander Köplinger <alex.koeplinger@outlook.com>2014-09-04 20:55:58 +0400
commitddcfc420706c60db22c4160616005a281d2ff00d (patch)
tree077aeb57908f30d72434904d25ae208f79e5f26a /mcs/class/System.ServiceProcess
parentf8365f7900909a4ee900a1a905c77fe3225bf4ce (diff)
Cleanup namespace names of class lib tests to follow convention
A couple of the test suites didn't follow the MonoTests.<namespace of class under test> naming convention for the namespace.
Diffstat (limited to 'mcs/class/System.ServiceProcess')
-rw-r--r--mcs/class/System.ServiceProcess/Test/System.ServiceProcess/ServiceBaseTest.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/mcs/class/System.ServiceProcess/Test/System.ServiceProcess/ServiceBaseTest.cs b/mcs/class/System.ServiceProcess/Test/System.ServiceProcess/ServiceBaseTest.cs
index 7a3c014f7cd..ec6a3a236b8 100644
--- a/mcs/class/System.ServiceProcess/Test/System.ServiceProcess/ServiceBaseTest.cs
+++ b/mcs/class/System.ServiceProcess/Test/System.ServiceProcess/ServiceBaseTest.cs
@@ -27,10 +27,11 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
+using System.ComponentModel;
using System.ServiceProcess;
using NUnit.Framework;
-namespace Test
+namespace MonoTests.System.ServiceProcess
{
[TestFixture]
public class ServiceBaseTest
@@ -84,7 +85,7 @@ namespace Test
/// <summary>
/// Required designer variable.
/// </summary>
- private System.ComponentModel.IContainer components = null;
+ private IContainer components = null;
/// <summary>
/// Clean up any resources being used.
@@ -107,7 +108,7 @@ namespace Test
/// </summary>
private void InitializeComponent()
{
- components = new System.ComponentModel.Container();
+ components = new Container();
this.ServiceName = "ServiceFoo";
}