Glossary - Chapter 4 Flashcards

1
Q

The degree to which specified coverage items have been determined or have been exercised by a test suite expressed as a percentage.

A

Coverage

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

A procedure used to derive and/or select test cases.

A

Test technique

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

A procedure to derive and/or select test cases based on an analysis of the specification, either functional or non-functional, of a component or system without reference to its internal structure.

A

Black-box test technique

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

A procedure to derive and/or select test cases based on an analysis of the internal structure of a component or system.

A

White-box test technique

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

A procedure to derive and/or select test cases based on the tester’s experience, knowledge and intuition.

A

Experience-based test technique

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

A black-box test technique in which test cases are designed to exercise equivalence partitions by using one representative member of each partition.

A

Equivalence partitioning

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

A portion of the value domain of a data element related to the test object for which all values are expected to be treated the same based on the specification

A

Equivalence partition

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

A black-box test technique in which test cases are designed based on boundary values, that is to say a minimum or maximum value of an ordered equivalence partition.

A

Boundary value analysis

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

A black-box test technique in which test cases are designed to execute the combinations of inputs and/or stimuli (causes) shown in a decision table, that is to say a table used to show sets of conditions and the actions resulting from them.

A

Decision table testing

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

A black-box test technique using a state transition diagram or state table to derive test cases to evaluate whether the test item successfully executes valid transitions and blocks invalid transitions.

A

State transition testing

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

A diagram that depicts the states that a component or system can assume, and shows the events or circumstances that cause and/or result from a change from one state to another.

A

State transition diagram

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

A black-box test technique in which test cases are designed to execute scenarios of use cases, that is to say a sequence of transactions in a dialogue between an actor and a component or system with a tangible result, where an actor can be a user or anything that can exchange information with the system.

A

Use case testing

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

The percentage of executable statements (the smallest indivisible unit of execution in a programming language) that have been exercised by a test suite.

A

Statement coverage

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

The percentage of decision outcomes (the result of a decision that determines the next statement to be executed) that have been exercised by a test suite.

A

Decision coverage

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

A test technique in which tests are derived on the basis of the tester’s knowledge of past failures, or general knowledge of failure modes.

A

Error guessing

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

An approach to testing whereby the testers dynamically design and execute tests based on their knowledge, exploration of the test item and the results of previous tests.

A

Exploratory testing