How to prepare test case report for a Project? Last Updated : 30 Sep, 2022 Comments Improve Suggest changes 3 Likes Like Report Test Planning: Like any project, the testing also should be driven by a plan. The test plan generates the report for the execution and tracking of the entire testing project. Preparing the test plan What needs to be the tested-the scope of testing, including clear identification of what will be the tested & what will not be tested. How the testing is going to be performed – breaking down the testing into small and manageable tasks and identifying the strategies to be used for carrying out the tasks. Resource needed for testing The timelines by which the testing activities will be performed. Risks that may be faced in all of the above, with appropriate mitigation and contingency plans. Test Case Specification: Using the test plan as the basis, the testing team design test case specification which then becomes the basis for preparing for individual test cases. A test case is nothing but a series of step executed on a product, using a predefined set of input data, expected to produce a pre-defined set of outputs, in a given environment. It describes "how" to implement those test cases Test case specifications are useful as it enlists the specification details of the items. Details of each Specification: Test Case Specification Description Test Case ID(TC_ID) Unique ID to identify/report the bug if present in the functionality of software Test Case Objective The purpose of the test. The lists can be generated to perform intended task, for which software is developed. Results should always follow the test case objective Pre-requisite This can include environment setup, supporting software environment setup. for the project, or any fields in which user will give the input. So that test cases can be planned accordingly. Steps This includes steps to be performed to give the input to the system, so that system can perform its specified task and display the result accordingly. If automated testing is used, then, these steps are translated to the scripting language of the tool. Input Data The choice of input data will be depended on the test case itself and the technique followed in the test case. For e.g. equivalence partitioning, boundary value analysis etc. Expected Result It can be the user required output to be shown Actual Result This step should do a comparison of the expected and actual results to highlight any differences. Status Whether expected results and actual result match, if it matches then PASS or else FAIL Example: To generate the Test Case report for the given software Note: As it can be seen that, Status for Viginere cipher is FAIL because Expected Result is not equal to Actual Result This test report can give the clear picture to the Manager/Stakeholders/Customer about the product and can check the quality of the project. Comment B bilal-hungund Follow 3 Improve B bilal-hungund Follow 3 Improve Article Tags : Project Python Technical Scripter 2018 Explore Python FundamentalsPython Introduction 2 min read Input and Output in Python 4 min read Python Variables 5 min read Python Operators 4 min read Python Keywords 2 min read Python Data Types 8 min read Conditional Statements in Python 3 min read Loops in Python - For, While and Nested Loops 5 min read Python Functions 5 min read Recursion in Python 4 min read Python Lambda Functions 5 min read Python Data StructuresPython String 5 min read Python Lists 4 min read Python Tuples 4 min read Python Dictionary 3 min read Python Sets 6 min read Python Arrays 7 min read List Comprehension in Python 4 min read Advanced PythonPython OOP Concepts 11 min read Python Exception Handling 5 min read File Handling in Python 4 min read Python Database Tutorial 4 min read Python MongoDB Tutorial 2 min read Python MySQL 9 min read Python Packages 10 min read Python Modules 7 min read Python DSA Libraries 15 min read List of Python GUI Library and Packages 3 min read Data Science with PythonNumPy Tutorial - Python Library 3 min read Pandas Tutorial 4 min read Matplotlib Tutorial 5 min read Python Seaborn Tutorial 15+ min read StatsModel Library- Tutorial 4 min read Learning Model Building in Scikit-learn 8 min read TensorFlow Tutorial 2 min read PyTorch Tutorial 6 min read Web Development with PythonFlask Tutorial 8 min read Django Tutorial | Learn Django Framework 7 min read Django ORM - Inserting, Updating & Deleting Data 4 min read Templating With Jinja2 in Flask 6 min read Django Templates 7 min read Python | Build a REST API using Flask 3 min read How to Create a basic API using Django Rest Framework ? 4 min read Python PracticePython Quiz 1 min read Python Coding Practice 1 min read Python Interview Questions and Answers 15+ min read Like