Test Cases - Best Practices Flashcards
What is a test case?
It is a short sequence of actions that verifies a specific feature or functionality.
What is a title?
A simple, self-explanatory sentence describing system behavior under specific conditions.
What is a pre-condition?
It is conditions the system should be in before running the test case.
What are test steps?
A list of actions that must be taken to complete the test.
What are the 3 components of a test case title?
An object, action, and conditions
Ex. Verify user is able to login with valid credentials
Object - user
Action - able to login
Condition - valid credentials
What are positive test cases?
Testing that something should happen actually happens when valid input is used.
What are negative test cases?
Testing that something that should not happen, does not happen by using invalid input.