DEV Community

antony stark
antony stark

Posted on

Software Testing

what is test case

  • A test case is a structured document containing a set of preconditions, precise steps, inputs, and expected results used by quality assurance (QA) teams to verify if a specific feature of a software application works correctly

what is negative test case ?

  • Negative test cases verify how a software application behaves when given invalid inputs, unexpected actions, or error conditions. Instead of checking if a feature works under ideal circumstances, they ensure the system rejects bad data gracefully, displays helpful error messages, and avoids crashing or exposing security flaws

What is test scenerio

  • A test scenario is a high-level description of a feature or function that needs to be tested. It outlines what to test from an end-user perspective, usually in a single sentence or bullet point, without listing step-by-step instructions or test data

Top comments (0)