Questions tagged [microsoft-test-manager]

Microsoft Test Manager provides the functionality for planning, creating, and running test cases.

Using Microsoft Test Manager you can plan, manage, and execute both manual and exploratory tests. You can also automate your manual tests once they are stabilized. While you are performing manual and exploratory tests, you can log bugs. The bug will contain a trace of your recent actions, a snapshot of the state of the system, and a copy of any notes you made while exploring the system. You can record your actions in the test case, so that they can be played back later.

You can also use Microsoft Test Manager to set up and manage lab machines. You can configure a virtual lab in which to install a distributed system, and link that lab to the test plan. Whenever you need to repeat tests, for example when you want to publish a change to your system, the lab can be reconfigured automatically.

Source: http://msdn.microsoft.com/en-us/library/vstudio/ms182409(v=vs.110).aspx (last paragraph)

395 questions
2
votes
1 answer

When using Microsoft Test Manager 2010 with SfTS, how do QA engineers know what tests they have to run?

We are moving our projects to TFS 2010 using the SfTS v3 (Scrum for Team System) template. We need to understand how Microsoft Test Manager is supposed to be used in this Scrum process. Specific scenario & question: The QA manager uses Test Manager…
MADCookie
  • 2,596
  • 3
  • 26
  • 46
2
votes
0 answers

Publishing test results to build after running manual test in MS Test Manager

I'm exploring using Microsoft Test Manager as an option for for my company to switch over to. We already use Visual Studio/TFS for our development, source control, builds, scrum process, etc. I've been able to use Test Manager to run manual tests,…
Qwerty
  • 313
  • 1
  • 2
  • 11
2
votes
1 answer

Ordering Coded UI tests and Results in Test Manager

I have a series of CodedUI test methods that make up a single test case. The test methods need to run in order (IE testmethoda runs then testmethodb and then testmethodc) and I want the results to show up in Microsoft Test Manager to look like…
stoj
  • 679
  • 1
  • 10
  • 18
2
votes
2 answers

How to create and link a bug to a specific iteration on a Test Result on Microsoft Test Manager (Microsoft Team Foundation Server TFS)

I have a manual test result with various iterations. Some iterations passed the test but other s didn't. I need to create and link a bug to a specific test result iteration (the one that didn't pass the test) but when I choose to create and link a…
Marco
  • 5,555
  • 2
  • 17
  • 23
2
votes
1 answer

Any way to make a normal project behave like a Microsoft Testing project?

I'm currently writing an analysis system within which, in the solution, I have created multiple test projects. I'm using Visual Studio 2008 Professional with Microsoft.VisualStudio.QualityTools.UnitTesting or the Microsoft Testing tools. While…
2
votes
0 answers

VSTS Test Agent - IPC Port Access Denied

My test agent and controller are communicating well. But, when agent machine has restarted the agent is going to offline. And it is coming "online" only when I remotely login into the machine. To automate this, I tried PowerShell script. When I run…
2
votes
1 answer

TFS: Configure test agents for mulitiple physical web environments

Background: We are running all physical hardware. All developers are using VS 2010 Ultimate and we will be using iTrace files. We would like to run our coded UI tests from test manager. We have multiple test environments: AT, SIT, FVT, UAT living…
user720806
  • 31
  • 1
2
votes
2 answers

Microsoft Test Manager - An error occurred with the diagnostic data adapter IntelliTrace

I get the following error message when I attempt to run a test in Microsoft Test Manager. This adapter will not be used for this test run. The following error occurred: The element 'StartupInfo' in namespace …
JP.
  • 5,536
  • 7
  • 58
  • 100
2
votes
1 answer

Can not run test cases with DataRow attribute in MTM

I am trying to run a test case like the one mentioned below in Microsoft Test Manager. I created a test case in MTM under a test suite and attached the below created test case in the automation script. public class Calculator { public int…
2
votes
4 answers

Use custom attribute to skip body method

I have the following function: public void Test(string testString) { //Do Stuff } At some points in my code, I have to repeatedly check if the parameter is empty string/null/whitespace to skip the body method. The usual ways I've done this…
2
votes
0 answers

TestMethod's [DataSource] loading before [AssemblyInitialize], need it to be the other way around

I have a bunch of tests in an assembly. These tests all live in [TestClass] classes and are marked with a [DataSource] pointing to Sql Server. Each of these test classes extends a BaseTest also marked with [TestClass]. I have an [AssemblyInitialize]…
allie
  • 369
  • 1
  • 15
2
votes
1 answer

How to handle 'Waiting for the application under test' in Microsoft Test Manager 2015 Update 1

Has anyone seen this issue before in Microsoft Test Manager? I have closed the application being tested, re-opened it and still the message appears (and Test Manager is essentially hung up on it). It happens somewhat randomly (too often for me) but…
Jonathan Nixon
  • 4,940
  • 5
  • 39
  • 53
2
votes
1 answer

How do I delete a shared parameter in Microsoft Test Manager

We are using Microsoft Test Manager 2015 Update 1. I created a couple of shared parameters to see how they work. How do you delete them? I can make them inactive, but they still display in the list of available shared parameters. I don't see a…
Jonathan Nixon
  • 4,940
  • 5
  • 39
  • 53
2
votes
0 answers

How do I get the associations between Test Cases and Test Suites/Test Plans in an SQL query?

An outline of the problem: In Microsoft Test Manager, we have lost some Test Results along the way, because testing was done in Test Manager with the wrong starting configurations. On correcting the configurations in the Test Plan, the Test Results…
BarrieK
  • 1,239
  • 1
  • 10
  • 12
2
votes
1 answer

Is it possible to associate automatd cases in Specflow and Selenium to Microsoft Test Manager?

I have some test scenarios and cases written in Specflow/Selenium in Visual Studio, usin MsTest. I just want to associate them to Microsoft Test Manager, so a test case written there is associated to an automated test. Is that possible? How? More…