TOP 5 our articles
1. What’s the difference between QA and Software Testing?
2.Test Summary Report + Template.

1. We get a list of files from the installation package builder. We need to get a list of files before, and the file list checking is performed after the installation. We can also hear the phrase: “Make a list after the installation, everything is true there” – this is a provocation! Do not give in!
Another point: the same installation package can install different file sets under different operating systems, i.e., we perform testing for each operating system separately.
Decision tables are used:
- when the output data or program behavior depends on the combinations of input data values;
- by checking the “business rules”.
Decision tables are usually divided into four parts.

Let our program take a dozen parameters. To test all combinations is very difficult, so you should choose the most common and potentially affecting each other. Bugs that arise by a particular combination of all ten parameters are rare.
The most common are bugs that arise by a particular combination of two parameters. The more information about the mutual influence of the parameters (more precisely – of the mutual non-influence), the more combinations we can not test. In the absence of such information, as well as by complex algorithms of program behavior, you should apply the method of pairwise testing.
Thus, we can simplify our task and test all the possible values for each pair of parameters.