1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
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; }
}
}
}
|