If you want support, focus your efforts on reducing the risk of development failure.
Test cases are powerful to the extent that they help you and your team gain useful by information about the system being tested. Automated testing adds power by helping you gather and disseminate information quickly, to give programmers fast feedback. The most successful companies automate testing to enhance their development flexibility. Some of the goals of their efforts are to:
- Quickly detect destabilizing changes in new builds.
- Expose regression bugs as quickly as possible.
- Report problems quickly, bucause this makes fixing easier.
Here are two examples of techniques for supporting the pace of development.
- Automated smoke tests. The phrase "smoke test" comes from hardware testing. You plug in a new board and turn on the power. If you see smoke coming from the board, turn off the power. You don't have to do any more testing. Smoke tests broadly cover product features in a limited time - typically over lunch or overnight. If key features don't work or if key bugs haven't yet been fixed, your team won't waste further time installing or testing the build. Getting it fixed becomes the programmers' top priority.
- Automated unit tests. These tests also streamline a development process, prevent backtracking, and maintain development momentum. These are larger sets of tests that focus on testing the low-level functions and classes of your product.
These kinds of automated tests take time, effort, skill, and money to create. The unit tests will probably be created by the programmers, although you might encourage and speed that effort by writing the code with them as half of a programming pair. With these kinds of benefits, you'll have a far easier time securing the copperation you'll need than if you were to simply focus on saving manual testing time.

没有评论:
发表评论