Test Case Execution

Test Case Execution

In the last session, We had discussed about Test Cases, which is one of the Testing Terms, and In this session, We are going to discuss another Testing Term, which is Test Case Execution.

What is Test Case Execution

  • This is the most important stage in Software Testing Life Cycle.
  • First we start writing Test Scenarios.
  • Once we are done with writing Test Scenarios.
  • We start writing Test Cases.
  • Once we are done with writing Test Cases.
  • We start executing Test Cases.
  • When we execute a Test Case, then we note down the Test Result.
  • We call this Test Result as Actual Result.
  • We compare this Actual Result with Expected Result and if both are same, Test Case is considered as Passed but if both are not same, then it is considered as Failed.
  • Whenever a Test Case is Passed, testing is considered as complete for that test case.
  • Whenever a Test Case is Failed, a defect is raised for the same, and assigned to developers, So that the developer can fix the defect, when the developers fix it, We Test the Test Case again and it is called as Retesting and it will continue until the Test Case is Passed.

Example of Test Case Execution

Let’s take an example of a Project, where developers are building or developing a calculator. A Calculator will have some functionalities like Addition, Subtraction, Multiplication and Division.
So, the First thing that we will do is, Write Test Scenarios.
Then we will write Test Cases
So, Below could be the Test Scenarios Example.

Test Scenarios Examples

  • Add 2 numbers – Test Scenario 1
  • Subtract 2 numbers – Test Scenario 2
  • Multiply 2 numbers – Test Scenario 3
  • Divide 2 numbers – Test Scenario 4

Now, Let’s see the possible Test Cases for these Test Scenarios.

Test ScenarioTest Case
Add 2 NumbersAdding 2 positive numbers and check the outcome
Add 2 NumbersAdding 1 positive number and 1 negative number where positive number is bigger than negative number and then check the outcome
Add 2 NumbersAdding 1 positive number and 1 negative number where negative number is bigger than positive number and then check the outcome
Subtract 2 numbersSubtract a small number from a big number
Subtract 2 numbersSubtract a big number from a small number
Subtract 2 numbersSubtract a positive and a negative number
Multiply 2 numbersMultiply a positive number and a negative number
Multiply 2 numbersMultiply two positive numbers
Multiply 2 numbersMultiply two negative numbers

Now, We will execute these Test Cases.

Here is the Test Case Execution Example for the those Test Cases.

Test ScenarioTest CaseTest DataExpected ResultActual ResultStatusDefect No
Add 2 NumbersAdding 2 positive numbers and check the outcome4+266PassedNA
Add 2 NumbersAdding 1 positive number and 1 negative number where positive number is bigger than the negative number and check the outcome4+(-2)22PassedNA
Add 2 NumbersAdding 1 positive number and 1 negative number where negative number is bigger than the positive number and check the outcome2+(-4)-22Failed123
Subtract 2 numbersSubtract a small number from a big number4-222PassedNA
Subtract 2 numbersSubtract a big number from a small number2-4-2-2PassedNA
Subtract 2 numbersSubtract a positive and a negative number4-(-2)62Failed124
Multiply 2 numbersMultiply a positive number and a negative number4*(-2)-8-8PassedNA
Multiply 2 numbersMultiply two positive numbers4*288PassedNA
Multiply 2 numbersMultiply two negative numbers(-4)*(-2)88PassedNA

Summary

We have discussed below topics in this session.

  1. What is Test Case Execution Process
  2. How to do Test Case Execution
  3. Example of Test Case Execution

Question

Question for this session is, How will do Test Case Execution for Login Functionality in any Website.

Leave a Comment