Techniques for checking coded solutions Flashcards
1
Q
What are some techniques for checking code?
A
- Performance testing assesses response times, user behaviour, and system performance in real conditions, revealing areas for software enhancements based on the results.
- Integration tests ensure that various modules in the application function together, requiring multiple parts of the solution to be active for meaningful testing.
2
Q
Explain how “black box” testing occurs. How is that different to “white box” testing?
A
Black Box Testing
Evaluates software functionality from a user perspective without internal knowledge, focusing on inputs and outputs.
White Box Testing
Examines internal code and logic, ensuring in-depth evaluation of software behaviour by understanding its internal structure.