Showing category results for Test

Feb 1, 2012
Post comments count0
Post likes count0

New MSDN topic: Coded UI Extension for custom controls

Shubhra Maji MSFT

The Visual Studio team has released MSDN documentation on Enable Coded UI Testing of Your Custom Controls. Please go through the step-by-step implementation of Coded UI extension points to achieve various levels of support. The document describes how to make a custom ChartControl with CurveLegend child object work with Coded UI....

DevOpsCommunityTest
Jan 31, 2012
Post comments count0
Post likes count0

Guidelines on improving performance of Coded UI Test playback

Tapas Sahoo [MSFT]

In this blog post I’ll go through some approaches you can make use of in your Coded UI Test project to achieve better playback performance. Meanwhile, do check an earlier post here that covers some common scenarios.  As I see, there are lot of APIs and settings available that the Coded UI Test user can leverage to hand-code a more optimi...

DevOpsTest
Jan 19, 2012
Post comments count0
Post likes count0

Coded UI Test and Microsoft Test Manager Survey

Shubhra Maji MSFT

Have you used Visual Studio 2010 Test Tools - Coded UI Test or Microsoft Test Manager (MTM) in your project(s)? If so, we would like to hear your experience with these features. Let us know what you think by taking the Coded UI / Microsoft Test Manager Survey.Thanks!Shubhra Maji – Visual Studio Test Tools Program Manager

DevOpsCI/CDTest
Jan 17, 2012
Post comments count0
Post likes count0

FAQ: What is the difference between “Assigned To” and “Tester” in MTM?

Importer

FAQ: In Microsoft Test Manager (MTM), what is the difference between the “Assigned To” field of the Test Case work item and the “Tester” field in MTM.  It seems these to fields are stored independently. So if I assign someone test cases through MTM then this is not translated into the “Assigned To” on the WI...

DevOpsTest
Jan 16, 2012
Post comments count0
Post likes count0

FAQ: Why are my tests not included in the test run?

Gautam Goenka [MSFT]

As an alternative to Microsoft Test Manager (MTM), users can use tcm.exe command line to run and manage their test cases.  The command line way is particularly useful in running tests in non-interactive way (say via scripts). FAQ: While using “tcm.exe run” command to run all the test cases in a test plansuite is - A: By default, “tcm.exe run...

DevOpsCI/CDTest
Jan 1, 2012
Post comments count0
Post likes count0

Microsoft Test Manager stuck in “waiting for test controller” state

Importer

This is guest post by Deepak Mittal, who is Senior Support Engineer in this space.Problem description:Microsoft Test Manager is stuck in "waiting for test controller" status after completion of test execution.Resolution: MTM tracing: http://blogs.msdn.com/b/gautamg/archive/2011/01/20/how-to-enable-tracing-for-mtm.aspx ...

DevOpsCI/CDTest
Jan 1, 2012
Post comments count0
Post likes count0

How To: Associate automation programmatically

Gautam Goenka [MSFT]

In my previous post, I mentioned about tcm testcase /import scenario.  The tcm testcase /import associates the test case artifact with automation (which is unit test or other test type). Another FAQ related to this scenario is - Q: How can I programmatically associate automation (because I want to do some customization of my own)? A: You ca...

DevOpsTest
Dec 30, 2011
Post comments count0
Post likes count0

How To: Get the Test Case associated with the unit test?

Gautam Goenka [MSFT]

For running and managing unit tests using Microsoft Test Manager (MTM), the users have to do tcm testcase /import of the test assembly.  This step creates a test case work item corresponding to unit test on the client side.  With this, users can do many new scenarios – most importantly start viewing the history/trend of the result. A FAQ that I ha...

DevOpsTest
Dec 29, 2011
Post comments count0
Post likes count0

How To: Bulk edit action recording?

Gautam Goenka [MSFT]

Microsoft Test Manager (MTM) has test runner using which one can do manual testing. One of the features that many folks use while doing manual testing using test runner is the Fast Forward feature. With this feature, a tester can do an action recording and later use that to fast forward the test with playback of the recording. A while back, this q...

DevOpsCommunityTest
Dec 28, 2011
Post comments count0
Post likes count0

Sample XPath utility for Coded UI Test

Gautam Goenka [MSFT]

Some important notes before I talk about the utility - The attached sample utility adds support for XPath query to Coded UI Test for searching controls.  The utility uses built-in XPath parser and other classes of .NET and as such is conformant to .NET’s XPath Syntax.  The new utility assembly adds two extension methods to ...

DevOpsCommunityTest