Rating: 5.0/5. From 1 vote.
Please wait...

A test case is a certain list of actions, prevailing conditions and features that are necessary for checking to what extent the functionality that is being tested or certain separate function have been released.

Preconditions are the combination of all necessary preparatory steps (program settings, testing environment), needed for executing this test case.

Using Preconditions When Checking Software

Using Preconditions When Checking Software

Preconditions contain important data (steps) needed for the initial preparation of OS, test program, mobile device, browser, etc. We should fulfill these conditions before starting test case execution.

If test case execution precedes the requirements that are described in preconditions, it can’t be executed or the actual results will be incorrect.

Preconditions may consist of one or a few sentences. There is no limitation to a sentence number but they should consist of 1 0r 2 sentences. In the same way as steps, preconditions should be concise but informative.

The preconditions may be also documented as steps if it’s required for a particular case (for instance, it’s needed for their proper implementation).

If it’s mandatory to fill the steps and expected results, the preconditions can be documented only in such cases when it’s necessary.

Examples

Примеры

PassedFailed
A user has successfully logged in to a personal account.A user has logged in with the help of a special “Authorization” form that is located on the main page and now he/she is in his/her personal account.

Note: in this case, it’s not logical to document everything in detail

A user has logged in. One or several products have been added to a cart.One or several products have been added to a cart.

Note: you didn’t mention important information on the authorization. It’s important in case if a user wishes to purchase a product. He/she can’t do this without authorization. Or you’ll need to write down various additional data and it’s a deviation from the steps of this test case.

The PATH to the program’s components has been mentioned in the OS settings.There are no preconditions

Note: in this case, it was mandatory to write down the PATH to the libraries since the program won’t function properly without this information.

 

If there are several test cases and each of them requires executing several actions but these actions are not an object for testing, then the test cases of one type can be documented as preconditions.

For example, you need to create two test cases for testing the functionality of the “My address” form.

By using the preconditions in such a case, you can create clear test cases that are more properly designed:

Test-cases 1 (with preconditions)Test-cases 2 (without preconditions)
Preconditions: a user has been authorized and is currently in a personal account, on the “My address” menu item.

1. Fill all fields with the necessary data;
2. Click on the “Save” button
3. Click on the “Edit” button
4. Click on the “Save” button

Preconditions: are absent

1. Log in
2. Go to the “Settings” tab
3. Choose the “Personal account” from the drop-down menu
4. Then click on the “My address” link there
5. Fill all mandatory fields with the required data
6. Click on the “Save” button
7. Click on the “Edit” button
8. Change the information you have previously entered
9. Click on the “Save” button

 

Test-case 1 (with preconditions)Test-case 2 (without preconditions)
Preconditions: a user has logged in and moved to his/her personal account, to the “My address” tab.

1. Fill all fields with the valid data
2. Click on the “Save” button
3. Click on the “Edit” button
4. Change the information you have previously entered
5. Click on the “Save” button

Preconditions: are absent

1. Log in
2. Go to the “Settings”
3. Choose “Personal account” from the options
4. Then go to the “My address” tab
5. Fill all fields with the valid data
6. Click on the “Save” button
7. Click on the “Edit” button
8. Change the information you have previously entered
9. Click on the “Cancel” button

 

Apparently, preconditions may help to decrease the number of steps of test case execution at least by 4 steps. This doesn’t actually impact the correct interpretation of test cases but significantly decreases its total number.

Such a practice helps not only to build an efficient testing strategy but also to significantly save the time of developers and the client’s budget required for testing!

Leave A Comment