Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

29 lines
571 B
C#

using System;
using System.Threading;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Services;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
using NUnit.Core;
namespace NUnit.Util
{
/// <summary>
/// Base class for servers
/// </summary>
public class TestServer : ServerBase
{
private TestRunner runner;
public TestServer( string uri, int port ) : base( uri, port )
{
this.runner = new TestDomain();
}
public TestRunner TestRunner
{
get { return runner; }
}
}
}