How to Decide Which Type of Testing is Required for Project

7
How to Decide Which Type of Testing is Required for a Project? – Manual or Automation In today’s scenario the competition is increasing day by day and customer attraction and retention both are very important so it’s very important to deliver quality product to customer. If you deliver quality product to customer that leads to Customer Satisfaction that will affect the sales and profitability. Some bugs are major which can’t be ignored. Take an e.g. of Hospital Patient Management software in which the records of patient and medicines corresponding to that patient are maintained; if there is a mismatch in the record it can harm the patient health. So in this case testing is very important. Now the next question is – which type of testing should be performed? “Automation is a part, but Manual is Heart of testing”. Decision of choosing it depends upon your common sense and test scenarios.

description

ow to Decide Which Type of Testing is Required for Project

Transcript of How to Decide Which Type of Testing is Required for Project

Page 1: How to Decide Which Type of Testing is Required for Project

How to Decide Which Type of Testing is Required for a Project? – Manual or AutomationIn today’s scenario the competition is increasing day by day and customer attraction and retention both are very important so it’s very important to deliver quality product to customer. If you deliver quality product to customer that leads to Customer Satisfaction that will affect the sales and profitability.

Some bugs are major which can’t be ignored. Take an e.g. of Hospital Patient Management software in which the records of patient and medicines corresponding to that patient are maintained; if there is a mismatch in the record it can harm the patient health. So in this case testing is very important.

Now the next question is – which type of testing should be performed?“Automation is a part, but Manual is Heart of testing”.Decision of choosing it depends upon your common sense and test scenarios.

These are various test scenarios on the basis which you can take decision easily:

1. Size of the project.If the project size is large and complex then Automation testing is the best option but if the project size is small then it can easily be tested through manual process.e.g. There is Banking software for marinating the records of account as there are large number of people who have their account with that bank So Automation testing is the best way to test it.

Page 2: How to Decide Which Type of Testing is Required for Project

2. Project BudgetIf the budget of project is small then manual testing is performed because automation testing is more expensive then manual testing.

3. Human ResourceIf the number of human resource is available in adequate amount then manual testing can be performed easily but if the human resources are less the automation testing is the best option.

4. Number of times a test scenario needs to be testedIf the test scenarios need to be tested regularly the automation testing should be used if you need to test the scenarios once in a while the manual testing should be performed.

5. Changes in the codeIf the changes made in the code are frequently then automation testing should be performed. Sometimes it happens that on making changes in the one module can harm the other module so it’s important to test the whole modules after making changes to one of the module and this can easily be tested through automation process.

6. Whether to test Parallel or sequentiallyWhen you need to run the test at same time but on different machines then automation testing is performed because in case of manual testing you have to perform the test sequentially.

7. How to do Random/Ad-hoc testingWhen you have to check the displays randomly then manual testing is performed.“More you play, More you will find.”The meaning of above phrase is that you will find more bugs by playing more with the features of the software. For playing with features, it’s very important that a tester need to be creative.

8. How to test image and font sizeIt’s not possible to test the images and font size through automation process these features can only be tested through manual process.

Page 3: How to Decide Which Type of Testing is Required for Project

 9. Time givenIf the time period is less for the testing phase then automation testing is the best option.

10. Number of testers wants to see the resultWhen one person is doing manual testing the rest of the team can’t see the result being run but with automation process multiple people can sign into the system and see the result.

 11. More InterestingTest automation has solved the problem filling out same forms again and again because filling out same information again and again can be frustrating.

 12. To find real user issuesAutomation tools are just act like a robot in which once you write the test scripts you have execute it as per requirement and it doesn’t need any human judgment. In manual testing,a tester has to find bugs using that software. A tester uses the software like end user and tries to break the things by putting the unexpected scenarios.

 13. Reuse Manual testIn case of manual testing if anything is added in the program then you have write the test cases again and again depending upon the number of times the things are added in the program. This leads to a huge loss of time and human affords but with automated tests, if you are adding anything to the program, you have to rerun all of the required tests instantly – the tests are already set up.

 14. Test with judgmentManual testing is done the basis of human judgment and experience. Using this process those areas get tested that may not have been tested or required because through manual testing you can test the every part of the software.

------------ 15. Layout and Usability Issues

Page 4: How to Decide Which Type of Testing is Required for Project

Layout and Usability Issues are tested only by manual process. As observation is required in both cases and tester has to test the things by considering himself as an end user because it’s very important that your software should be user friendly.

 16. EfficiencyAutomation testing is more efficient when there are large numbers of system users. Suppose you have to test the software that maintains the record of all students in the college, their roll numbers and their marks .So in order to test this software automation testing is the best option.

17. Explanatory testingManual testing is the best option to perform explanatory testing as you have to explore the software to identify errors.

 18. Type of softwareFor some type of software’s manual testing is the best option, like in Touch based software manual testing is performed because in touch based software you have to test the visualization that can only be tested through manual process whereas in case of Form filling software in which you have to enter the same data again and again automation testing is preferred.

19. Type of methodologyChoosing right testing type also depends on the type of methodology. In the scenario where requirements change rapidly, manual testing is preferred over automation testing.

 20. Installation and setup testingFor Installation and setup testing manual testing is used. As you have to test the scenarios manually loading CD-ROMs and tapes, changing hardware, in that manual testing is performed. 21. Error handling and Recovery testingError handling, disaster and recovery, these issues can only be tested through manual process. For testing these issues tester has to test the

Page 5: How to Decide Which Type of Testing is Required for Project

scenarios like powering off servers, hard disk crash etc. It’s not possible to test these things using test scripts.

 22. Load & Stress testingAutomation testing helps in Load, Volume, Stress and Capacity testing. Suppose a system is created in which 100 users can work at the same time. So, in order to check the system whether it handles the load of more than 100 people we perform this testing.

23. GUI TestingFor testing GUI displays automation testing is performed. There are many tools used for recording user actions and then replay them any number of times. This is helpful for comparing actual and expected results.

Manual and Automation testing both are important at their own place but the motive is to do quality testing. So the most important is use of right testing at the right place, time and environment.