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