Posts Tagged ‘tips’
Software Testing Tips
Wednesday, April 29th, 2009Do you know that software testing can be an art? Being able to evaluate the capability of a system or application and ensuring it meets with client requirement involves a certain amount of craftsmanship.
This could be a dull chore where you simply perform ad hoc testing or a challenging experience that involves a good deal of planning and designing before testing.
Here are 10 tips that can help to develop good quality software that works according to specifications.
1. Understand the application: How can you test if you do not know if the application is functioning as designed or if a functionality is missing? You first need to understand and have a good knowledge of the software before you start testing. Understand what the software can do, what external resources it uses to do it, its major behaviors and how it interacts with its environment. This knowledge would help you write effective test cases.
2. Start with a plan: Strong testing begins with a good test plan. You need to come up with a good strategy that defines your requirements in terms of tests. This means knowing what you need to test, what constitutes a bug and how to prioritize your work according to associated risks.
3. Write effective test cases: A combination of domain knowledge, prior experience and good writing skills help you to write good test cases. Your test cases should be understandable and repeatable that explains the intention of the tests and the expected results.
4. Ensure maximum coverage: You can never guarantee 100% coverage but you can ensure that every requirement is covered by at least one test case. You can also break your application under test into smaller modules and write individual test cases for each module. This would ensure maximum test coverage.
5. Start early: Writing your test cases in the requirement analysis and design phase ensures that all requirements are testable. Bugs detected early in the development process are also considered cheaper to fix.
6. Give access to developers: It’s a good idea to give developers access to your test cases before they begin coding. This helps them to understand and analyze your test cases completely and develop good quality software. It also helps them save time on re-working.
7. Test with the right attitude: No software is bug-free. So, test with the intention of finding bugs and you will definitely succeed in finding some. Testing should ensure that the application does what it should and doesn’t do what it should not.
8. Record test results: Besides writing test cases, you should record your test results and provide solutions. This data helps when you do regression testing as probable bugs in the application can now be easily predicted.
9. Test for performance: Many testers tend to ignore performance testing when the volume of data is large. However, testing for performance is very important and you need to find ways to test your application for performance even if it means writing just basic scripts to create test data performance test.
10. Remove changes in code base after testing: For testing, changes are made to the code base. Don’t forget to note down these changes and remove them from the code base before final release.
To summarize, no matter how much testing you perform, you can never guarantee a bug free application. What you can ensure is that the basic and crucial functions of the application work well and your customer is happy with the software you deliver.