Verification, validation, and unit testing - Lecture Flashcards

1
Q

What is verification?

A

The process of proving that the software conforms to its specified functional and non-functional requirements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is validation?

A

The process of proving that the software meets the customer’s true requirements, needs, and expectations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the purpose of unit testing?

A

Testing small parts of the code (like functions/methods) to make sure they work.
Example: Testing a function that adds two numbers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the purpose of integration testing?

A

Testing how different parts of a program work together.
Example: Checking if the login and registration systems in a website work together without errors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the purpose of system testing?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the purpose of acceptance testing?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is regression testing?

A

Regression testing is the practice of retesting a software application to ensure that recent changes haven’t introduced new issues or broken existing functionality.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does statement coverage do for us?

A

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%

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does branch coverage do for us?

A

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%

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does path coverage do for us?

A

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%

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Name three black box testing techniques

A

Boundary value analysis
Equivalence partitioning
Decision table testing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a test suite?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly