Tagged Questions
12
votes
5answers
341 views
Are Exhaustive “Brute Force” UI Tests Worth It?
Lately I've been asked to write some automated GUI tests of the following style:
Open the application
Open ALL dialog boxes
In each dialog check for ...
Are these types of tests worthwhile? What ...
4
votes
2answers
218 views
What's the most efficient way to run lots of tests?
Here's my current setup:
Compile on teamcity
Copy the dlls to 8 agents and run tests simaltaniousisly (via snapshot dependencies)
Finally taper them in to a single 'publish' build configuration.
...
9
votes
13answers
622 views
Should automated tests be efficient?
I've written and edited a bunch of automated GUI tests. In some cases, the tests are inefficient (eg to select an item from a list, instead of a clever search, a dialog is opened and starting fro the ...