public void Setup() { _actionExcecutor = MockRepository.GenerateStub<IActionExcecutor>(); _subject = new Target(_actionExcecutor, "csc.exe"); _action = x => x.OutputFileTo("temp"); }
public void DefaultConstructor() { var subject = new Target("csc.exe"); }