|
|
|
|
|
by duped
1846 days ago
|
|
In my experience, manual QA is a symptom of bad engineering culture where engineers inherit large systems with poor test coverage. Automated testing is only hard when it isn't considered from the beginning of the project. A lot of manual QA is bad testing too. If you have a grueling and linear process to go through to test your software each release... why isn't it automated? Is it doing something that fundamentally cannot be automated? If yes, you're probably wrong - almost everything can be automated. Humans need to be put in the loop when requirements are changing and problems need to be solved. Designing comprehensive testing systems may be the role of good QA, but actually running the tests by hand is not a great place to be regularly. |
|