What test methods do you use for developing websites?

后端 未结 7 2155
滥情空心
滥情空心 2020-12-09 12:56

There are a lot of testing methods out there i.e. blackbox, graybox, unit, functional, regression etc.

Obviously, a project cannot take on all testing methods. So

7条回答
  •  离开以前
    2020-12-09 13:14

    Well before going to the answer i would like to clear testing concept about multiple methods.

    There are six main testing types which cover all most all testing methods.

    1. Black Box Testing
    2. White Box Testing
    3. Grey Box Testing
    4. Functional Testing
    5. Integration Testing
    6. Usability Testing

    Almost all Testing methods lies under these types, you can also use some testing method in multiple types like you can use Smoke testing in black box or white box approach on the basis of resources available to test.

    So for testing a web site completely you need to use at least following testing methods on the basis of resources available to test. These are at least methods which should be used to test a web site, but there may be some more imp methods on the basic of nature of website.

    1. Requirement Testing
    2. Smock Testing
    3. System Testing
    4. Integration Testing
    5. Regression Testing
    6. Security Testing
    7. Performance & Load Testing
    8. Deployment Testing

    You should at least use all of above (8) testing methods to test a web site no matter what testing type you are focusing. You can automate you test in some areas and you can do this manually it all depends upon the resources availability.

    There is specifically no hard and fast rule to follow any testing type or any method. As you know "Testing Is An ART" so art don't have rules or boundaries. Its totally up to you What you use to test and how.......

    Hope you got the answer of question.

提交回复
热议问题