public void StartTheApplication() { this.console = new FakeConsole(); var taskList = new TaskList(console); this.applicationThread = new System.Threading.Thread(() => taskList.Run()); applicationThread.Start(); }
public void StartTheApplication() { this.console = new FakeConsole(); this.applicationThread = new Thread(() => new TaskList(console).Run()); applicationThread.Start(); }
public void StartTheApplication() { this.console = new FakeConsole(); this.applicationThread = new System.Threading.Thread(() => Program.Main(null)); applicationThread.Start(); }