I work with Coded UI Tests and Visual Studio 2013. Now I need to check if the images from the folder inside the application are displayed correctly. This is why I created a folder containing the images and set the build action to none and deployment always.
Unfortunately, all tests run in their own test results folder, and my images are not deployed correctly. I know that I can do this using the DeploymentItem attribute or test suite file, but I don't want to do this. I want to avoid "test results" and run tests from the output folder of my test project.
I do this with unit tests, for example. They are written using XUnit.Net, which works great. I thought it would work with MS Test as well, but this seems to work only for unit tests, but not for coded user tests.
So, letβs summarize it again: how can I get rid of the Test Results folder when using Coded UI Tests with Visual Studio 2013 and run my tests just from the project output directory?
source share