Middle
What test design techniques do you know?
sobes.tech AI
Answer from AI
- Equivalence Classes (Equivalence Partitioning)
- Boundary Value Analysis
- Decision Tables
- State Transition Testing
- Pairwise Testing
- Use Case Testing
- Control Flow Testing
- Model-Based Testing
- Risk-Based Testing
- Checklist Based Testing
- Exploratory Testing
Example of Boundary Value Analysis:
For an age input field from 1 to 120:
- 0, 1 (lower boundary)
- 120 (upper boundary)
- 121 (value beyond upper boundary)
- Typical values (e.g., 25, 50)
Example of a Decision Table:
| Condition 1 | Condition 2 | Action A | Action B |
|---|---|---|---|
| True | True | X | - |
| True | False | - | X |
| False | True | X | - |
| False | False | - | - |