I have Hudson CI installed on a linux vm and a slave on windows 7 vm. I have a project running on the slave and it has some unit tests using the Project White Automated UI testing framework. All of those tests involve launching the application first in order to perform tasks like clicking on a button.
Problem
Hudson builds the project fine but when it gets to running the nunit tests with the UI tests it doesn't launch the application in order to perform those tests so all the the UI tests throw errors saying that the window im trying to use cannot be found because the application isn't being launched. All the regular unit tests run fine. How can I get hudson slave to launch the application so that i can run the UI tests?