πŸ‘¬Types of Testing strategy

Types of testing strategies

Some of the testing methodologies that may be part of an organization’s testing strategy are:

Analytical strategy

For example risk based testing or requirements based testing. Here the testing team defines the testing conditions to be covered after analyzing the test basis, be it risks or requirements, etc.

So, in case of testing based on requirements, requirements are analyzed to derive the test conditions. Then tests are designed, implemented and executed to meet those requirements.

Even the results are recorded with respect to requirements, like requirements tested and passed, those that were tested but failed and those requirements which are not fully tested, etc.

Model based strategy

In this technique, testing team chooses an existing or expected situation and creates a model for it, taking into account inputs, outputs, processes and possible behavior.

The models are also developed according to existing software, hardware, data speeds, infrastructure, etc.

Let us consider the scenario of mobile application testing. To carry out its performance testing, models may be developed to emulate outgoing and incoming traffic on mobile network, number of active/inactive users, projected growth, etc.

Methodical strategy

Here test teams follow a predefined quality standard (like ISO25000), checklists or simply a set of test conditions. Standard checklists can exists for specific types of testing (like security), application domains.

For instance, in case of maintenance testing, a checklist describing important functions, their attributes, etc. is sufficient to perform the tests

Standards or process compliant strategy

Medical systems following US Food and Drugs Administration (FDA) standards are good examples of this technique.

Here the testers follow the processes or guidelines established by committee for standards or panel of industry experts to identify test conditions, define test cases and put testing team in place.In the case of a project following Scrum Agile technique, testers will create its complete test strategy, starting from identifying test criteria, defining test cases, executing tests, report status etc. around each user stories.

Reactive strategy

Here tests are designed and implemented only after the real software is delivered. So testing is based on defects found in actual system.

Consider a scenario where exploratory testing is being used. Test charters are developed based on the existing features and functionalities. These test charters are updated based on the results of the testing by testers. Exploratory testing can be applied to Agile development projects as well.

Consultative strategy

As the name suggests, this testing technique uses consultations from key stakeholders as input to decide the scope of test conditions as in the case of user directed testing.

Let us consider a situation where the compatibility of any web based application with possible browsers is to be tested. Here the application owner would provide a list of browsers and their versions in order of priority.They may also provide a list of connection types, operating systems, anti malware software, etc. against which they want the application to be tested.

The testers may then use different techniques like testing pair wise or equivalence partitioning techniques depending upon priority of the items in the provided lists.

Regression averse strategy

Here testing strategies focus on reducing regression risks for functional or non-functional product parts.

Continuing our previous example of web application, if the application needs to be tested for regression issues, testing team can create test automation for both typical and exceptional use cases.

They can even use GUI based automation tools so that the tests can be run whenever the application is changed.

It is not necessary to use any one of the techniques listed above for any testing project. Depending on product and organization’s requirements, two or more techniques may be combined.

Last updated