Unit Testing Flashcards

1
Q

It is the process of testing individual software units or components to ensure they function as expected.

A

Unit Testing

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

A type of unit testing that uses step-by-step test execution

A

Manual Testing

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

A type of unit testing is less common due to efficiency concerns

A

Manual Testing

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

A type of unit testing that uses unit test frameworks

A

Automated Testing

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

A type of unit testing that developers write test cases before deploying code.

A

Automated Testing

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

A unit testing technique that focuses on inputs and expected outputs (e.g., user interface testing)

A

Black Box Testing

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

A unit testing technique that examines internal logic and structure (e.g., path testing)

A

White Box Testing

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

A unit testing technique that combines both approaches for broader test coverage

A

Gray Box Testing

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

A Code Coverage Technique that ensures each line is executed

A

Statement Coverage

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

A Code Coverage Technique that tests all decision points

A

Decision Coverage

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

A Code Coverage Technique that ensures all possible branches in control structures are executed

A

Branch Coverage

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

A Code Coverage Technique that tests all possible logical conditions

A

Condition Coverage

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

A Code Coverage Technique that validates different states and transitions

A

Finite State Machine Coverage

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

They simulate real dependencies in unit tests

A

Mock Objects

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