public ConsoleRunner(IAmAHostedProcess hostedProcess, IWrapConsole wrapper)
 {
     _hostedProcess = hostedProcess;
     _wrapper       = wrapper;
 }
Exemplo n.º 2
0
 public WindowsService(IAmAHostedProcess hostedProcess)
 {
     _hostedProcess = hostedProcess;
     InitializeComponent();
 }
Exemplo n.º 3
0
 public ConsoleRunner(IAmAHostedProcess hostedProcess, IWrapConsole wrapper)
 {
     _hostedProcess = hostedProcess;
     _wrapper = wrapper;
 }
Exemplo n.º 4
0
 public WindowsService(IAmAHostedProcess hostedProcess)
 {
     _hostedProcess = hostedProcess;
     InitializeComponent();
 }
Exemplo n.º 5
0
 public void SetUp()
 {
     _mock = new MockRepository();
     _hostedProcess = _mock.StrictMock<IAmAHostedProcess>();
     _wrapper = _mock.StrictMockWithRemoting<IWrapConsole>();
 }
Exemplo n.º 6
0
 public void SetUp()
 {
     _mock          = new MockRepository();
     _hostedProcess = _mock.StrictMock <IAmAHostedProcess>();
     _wrapper       = _mock.StrictMockWithRemoting <IWrapConsole>();
 }