Test Scenario Template and Test Case Template
Test Scenario :
A Scenario is any functionality that can be tested. It is also called Test Condition, or Test Possibility.
Test Scenario Template :
● Test Scenario ID
● Test Scenario name
● Objective
● Pre-Condition
● Test Condition
Test Scenario ID :
Each test Scenario should have a unique ID.
Test Scenario name :
The title is important because it’s often the first or only thing you see when you are scanning a list of Test Scenarios.Clear titles are the key to help testers to find quickly the right test Scenario.
Objective :
To mention the functionality name of the test scenario.
Pre-Condition :
Any requirement that needs to be done before the execution of this test case.
Test Condition :
Test Steps section gives the tester a numbered list of the steps to perform in the system, which makes it easier to understand the test Scenario. It is recommended to have 3-8 test steps per one test Test Scenario. Too many steps make it difficult for developers and testers to reproduce the steps when a bug report is filed against the test Test Scenario.
Test Case :
A test case is the smallest unit of the testing plan which includes a description of necessary actions and parameters to achieve and verify the expected behavior of a particular function or the part of the tested software.
Test Case Template :
● Test case ID
● Test case objective
● Pre-condition
● Step ID
● Step Description
● Input data
● Expected result
● Actual result
● status
Test case ID :
Each test case should have a unique ID.
Test case objective :
To mention the functionality name of the test case.
Pre-condition :
Any requirement that needs to be done before the execution of this test case.
Step ID :
Test Steps section gives the tester a numbered list of the steps to perform in the system, which makes it easier to understand the test case.
Step Description :
Step description in which we describe each step details which we are going to perform during testing.
Input data :
You can enter test data directly in the test data field, or refer to a separate file that contains test data for one or more test cases.
Expected result :
Mention the expected result including error or message that should appear on the screen. The tester needs to know the expected result in order to assess whether the test case is successful. The optimal level of detail in this field varies from situation to situation.
Actual result :
What would be the state of the system after running the test case as per client requirement?
Status :
Mark this field as failed, if the actual result is not the same as the expected result.
Comments
Post a Comment