Hot answers tagged mstest
6
One of the realities about corporate politics (I hate to say it, but it's a big part of our job) is that everyone wants to put out the image that they're open minded and willing to do what's best for the company, but in reality most people want to go with what is safest for their career and with what they know and are comfortable with.
< tangent >
If ...
5
Take a look at this link from MSDN. It may answer your question in part.
In the platform support section:
Windows Internet Explorer 9
Important Windows Internet Explorer 9
is only supported if you have
installed Visual Studio 2010 Service
Pack 1 The following scenarios are
supported if you have installed Visual
Studio 2010 Service Pack ...
2
I have figured out how to accomplish this and I will post it here since there has been alot of views of the question but no answer.
In test manager select the Organize tab. Then select the Shared Steps Manager. Create a shared step and pace a parameter in it eg '@Locatiom' enter the url you wish to navigate to in the parameter at the bottom of the form and ...
1
The insertion of Thread.Sleep() is typically indicative of a race condition in your test and your test is running out of sync with the thing is it testing.
One suggestion may be to insert a polling loop to wait for the redirect, or an event to indicate the redirect has happened.
See http://www.testingmentor.com/imtesty/2012/06/11/sleepy-automated-tests/ ...
1
I use Microsoft Test Manager and find that I center my test plans around releases. It might be helpful to have a separate Regression Test Plan with suites set up by product area that can be updated as code updates and so new test cases can be added as new features are implemented in existing product areas (or new product areas are added). There is some ...
1
Microsoft Test Manager (MTM) in Visual Studio 2010 does not have this ability and I am not aware of any plugins/patches that allow this to happen. Unfortunately, it does not appear that MTM in Visual Studio 2012 will have this feature either - ...
1
The following steps may help to get QC working in IE9 with Windows 7. Not quite the same environment, but its worth a shot.
Adjust your user account control settings to 'Never notify'. This requires a reboot.
Disable any proxy account settings that you may have configured in Internet Options.
Try installing the QC explorer app. It is a tool that HP ...
1
I'd suggest you approach this as follows:
Work Out What The Font Button Is Supposed To Do
Open MS Word, search the online help for "font". Read the entries related to fonts.
Have a bit of a play around in Word trying various settings.
Write Some Tests To Check If The Font Button Does What It's Supposed To Do
Use what you learned about the font button ...
1
If I understand you situation correctly you have a data-driven test, and you want to be able to run that data-driven test using the arguments in the 'datafile' against one or more services with varying locations.
One approach may be to read in a file that lists the desired services (location) at runtime into an array, then loop through each element ...
1
"it will extend the time a program spends in development"
Initially, this may be true but as the software matures and becomes more complex, the TDD approach will actually reduce the time a program spends in development since the code-base will be more robust, easier to maintain and less prone to bugs.
Once you have good unit test code coverage and a full ...
Only top voted, non community-wiki answers of a minimum length are eligible