Verification, validation, and unit testing - Lecture Flashcards
What is verification?
The process of proving that the software conforms to its specified functional and non-functional requirements.
What is validation?
The process of proving that the software meets the customer’s true requirements, needs, and expectations.
What is the purpose of unit testing?
Testing small parts of the code (like functions/methods) to make sure they work.
Example: Testing a function that adds two numbers.
What is the purpose of integration testing?
Testing how different parts of a program work together.
Example: Checking if the login and registration systems in a website work together without errors.
What is the purpose of system testing?
Testing the whole program to ensure it does what it is supposed to do.
Example: Testing a video game to ensure all features, like graphics and controls, work correctly.
What is the purpose of acceptance testing?
Final testing to see if the software meets what users and the business want.
Example: Letting real users try a new mobile app to see if it meets their needs and expectations.
What is regression testing?
Regression testing is the practice of retesting a software application to ensure that recent changes haven’t introduced new issues or broken existing functionality.
What does statement coverage do for us?
It ensures that each line of code is executed at least once during testing.
Statement coverage = (Number of executed statements / total nbr of statements) + 100%
What does branch coverage do for us?
It focuses on testing every possible branch or decision point in the code. It helps identify conditions that can lead to different execution branches within the code.
Branch coverage = (Nbr of executed branches / total nbr of branches) * 100%
What does path coverage do for us?
It aims to test every possible path through the code. This is a more in-depth form of white box testing, ensuring that all combinations of branches and conditions are exercised.
Path coverage = (nbr of executed paths / total nbr of paths) * 100%
Name three black box testing techniques
Boundary value analysis
Equivalence partitioning
Decision table testing
What is a test suite?
A test suite is a collection of test cases or test classes grouped
together for testing a specific part of the code or a specific
functionality.