retag
[mcs.git] / nunit24 / ClientUtilities / util / TestServer.cs
blob0df5d469c9765eae4c1a63a71382019b9613b258
1 using System;
2 using System.Threading;
3 using System.Runtime.Remoting;
4 using System.Runtime.Remoting.Services;
5 using System.Runtime.Remoting.Channels;
6 using System.Runtime.Remoting.Channels.Tcp;
7 using NUnit.Core;
9 namespace NUnit.Util
11 /// <summary>
12 /// Base class for servers
13 /// </summary>
14 public class TestServer : ServerBase
16 private TestRunner runner;
18 public TestServer( string uri, int port ) : base( uri, port )
20 this.runner = new TestDomain();
23 public TestRunner TestRunner
25 get { return runner; }