Question

A few test scenarios have been recorded using CodedUI test template for my web application in Visual Studio 2010 beta. These run from within the Visual Studio successfully without any issues. I was looking for instructions to create a deployment package.

Was it helpful?

Solution

Coded UI tests use namespaces within libraries that are part of Visual Studio e.g. Microsoft.VisualStudio.TestTools.UITesting

This is unlike UI Automation which is part of the core .NET framework e.g.

System.Windows.Automation

Therefore as I understand it you cannot package Coded UI tests to run in an environment that does not have Visual Studio installed.

OTHER TIPS

Configure an environment with a "standalone" MSTest

A series of new test tools is being introduced with Visual Studio 2010. Team Agents provides a very small footprint and includes MSTest (it will be installed in a Visual Studio path).

C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\mstest.exe

You can copy the contents of your test project(s) bin\ directory to the machine with Team Agents installed and execute MSTest against your test container.

mstest /testcontainer:x:\test-project\automated-tests.dll"

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top