How to Stop Annoying Project Team with Improper Test Cases?

by Helen Johnson | August 15, 2017 1:43 pm

Properly designed test cases promote the creation of top-quality products and solutions by increasing the productivity and work efficiency of the whole team. Poorly written test cases may lead to misunderstandings between team members and cause time wasting. But proper ones ensure flawless activities and smooth release. How to write effective test cases? This article will give you the answer.

What is a test case?

In general, test case is a set of specific actions that testers perform in order to detect any system errors and misoperation of software components. Several test cases form a test scenario. Example of test cases are availabe here[1].

For example, you should test a login procedure. This is test scenario. The way you are going to verify the procedure is a set of test cases. First, you input valid email – one case. Then you check system behavior by entering invalid inputs – another case. And so on till you cover most common cases. But do not forget about untypical ones because sometimes user behavior can be unpredictable.

Why do we need to write test cases?

Quality of software products requires developers, testers and other specialists engaged in software creation to be very specific. By designing test cases, QA specialists verify product functionality and capacities step by step in accordance to specifications and written requirements.

Test cases help to monitor and track verified system aspects. Usually, they are created before the actual beginning of testing procedure. QA team[2] designs drafts of test cases to which they will add the actual result of checking.

What information should every test case include?

To avoid the duplication of test cases, QA specialists should support every test case with the information that helps to specify testing conditions.

Every test case should start with short description of requirement that will be under test. Then tester explains how he will verify this particular system aspect. Do not forget to specify testing environment: OS version, software build, security access, data and time, etc. Developers need these details to reproduce bug and fix it.

Test cases include inputs (valid / invalid) and correspondent outputs. Proper system behavior is well-documented in different types of specifications[3] and by client’s requirements. This is expected system behavior. If the system operates improperly, tester should add some visual proofs if possible.

All test cases consist of particular parts that include all the above-mentioned information.

What are standard attributes of test cases?

How to write effective test cases?

QA specialists design test cases to help other team member clearly understand and easily reproduce tests. So cases should be short, simple and include all necessary information. Much pointless text steals time of both testers and developers and cause new misinterpretations. Assertive language ensures the proper understanding of specified steps. Be accurate and precise.

Try to be critical. While writing a test case, user-oriented approach is essential for qualitative check. After the test case is ready, review it from the perspective of tester. Check whether the person not connected with the project will properly understand the case.

Due to Traceability Matrix, testers do not miss to verify any software requirement. As the number of test cases to cover all system functionality may be endless, QA team implements testing techniques: Boundary Value[4] Analysis (BVA), Equivalence Partition (EP), State Transition and Error Guessing Techniques. They assist in detecting bugs spending less time.

To manage test cases in spreadsheets is not an effective practice. QA team uses special test case management tools that simplify test case creation, management and maintenance. The most popular tools are JIRA and Quality Center.

Learn more from QATestLab

Related Posts:

Endnotes:
  1. here: https://qatestlab.com/resources/knowledge-center/sample-deliverables/test-cases/
  2. QA team: https://blog.qatestlab.com/2019/05/07/building-qa-team/
  3. specifications: https://blog.qatestlab.com/2015/12/31/srs-frs-brs/
  4. Boundary Value: https://qatestlab.com/knowledge-center/qa-testing-materials/boundary-value-control/
  5. 4 Attributes of Qualitative and Well-Written Test-Case: https://blog.qatestlab.com/2011/03/16/4-attributes-of-qualitative-and-well-written-test-case/
  6. Why Test Cases Should Be Designed?: https://blog.qatestlab.com/2016/02/11/designed-test-cases/
  7. Test Automation Myths: Where the Truth Ends and the Myth Begins?: https://blog.qatestlab.com/2024/04/11/test-automation-myths-where-the-truth-ends-and-the-myth-begins/

Source URL: https://blog.qatestlab.com/2017/08/15/improper-test-cases/