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